CSS で ol リストの小文字ラテン文字を設定する
プロパティ list-style-type の値 lower-alpha は、番号付けを
小文字のラテン文字にします:
<ol>
<li>リストアイテム</li>
<li>リストアイテム</li>
<li>リストアイテム</li>
<li>リストアイテム</li>
<li>リストアイテム</li>
</ol>
ol {
list-style-type: lower-alpha;
}
:
プロパティ list-style-type の値 lower-alpha は、番号付けを
小文字のラテン文字にします:
<ol>
<li>リストアイテム</li>
<li>リストアイテム</li>
<li>リストアイテム</li>
<li>リストアイテム</li>
<li>リストアイテム</li>
</ol>
ol {
list-style-type: lower-alpha;
}
: