番号付きリスト(青丸)

  1. アカウントを作成
  2. メールアドレスを確認
  3. プロフィールを設定
HTML
<ol class="list-step">
  <li>アカウントを作成</li>
  <li>メールアドレスを確認</li>
  <li>プロフィールを設定</li>
</ol>
CSS
.list-step {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.list-step li {
  counter-increment: step;
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #333;
}

.list-step li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background: #4f46e5;
  border-radius: 50%;
}

🌟 有料会員限定素材を配布中!

ここでしか手に入らない特別デザイン素材を今すぐチェック!

有料会員ページを見る
目次