- デザインを選ぶ
- コピーする
- 貼って完成
.bnto-list-check { list-style: none; padding: 0; } .bnto-list-check li { display: flex; align-items: center; gap: 10px; } .bnto-list-check li::before { content: "✓"; flex: none; width: 20px; height: 20px; border-radius: 50%; background: hsl(119 31% 51%); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
<ul class="bnto-list-check"> <li>デザインを選ぶ</li> <li>コピーする</li> <li>貼って完成</li> </ul>
使い方のコツ
メリットや特徴の一覧など「できること」を伝えるリストに最適。flex: none はテキストが長いときにマーカーが潰れるのを防ぐ保険です。「✓」は好きな記号や絵文字に差し替えられます。