カテゴリー
CSS list-style-type

【CSS】list-style-type:リストのマーカー文字を指定する

(例)【CSS】list-style-typeの使用方法

See the Pen
list-style-type
by linlin (@linlin098765)
on CodePen.

<ul style="list-style-type: disc">
<li>例</li>
</ul>

<ul style="list-style-type: circle">
<li>例</li>
</ul>

<ol style="list-style-type: lower-roman">
<li>例</li>
</ol>

<ol style="list-style-type: upper-roman">
<li>例</li>
</ol>

<ol style="list-style-type: cjk-ideographic">
<li>例</li>
</ol>

<ol style="list-style-type: hiragana">
<li>例</li>
</ol>

【CSS】list-style-type:リストのマーカー文字を指定する

 CSSのlist-style-typeはリストの先頭に表示されるマーカー文字を指定するプロパティです。