「CSS」list-style-typeリストの項目を小文字ギリシャ文字で指定
書式
list-style-type: lower-greek;
使用例
<style> /*小文字の古代ギリシャ文字 */ .cft { list-style-type: lower-greek; } </style> <!--クラスcftを適用 --> <ul class="cft"> <li>東京</li> <li>大阪</li> <li>福岡</li> </ul>
Coding Changes the World
書式
list-style-type: lower-greek;
使用例
<style> /*小文字の古代ギリシャ文字 */ .cft { list-style-type: lower-greek; } </style> <!--クラスcftを適用 --> <ul class="cft"> <li>東京</li> <li>大阪</li> <li>福岡</li> </ul>