「CSS」list-style-typeリストの項目を小文字ギリシャ文字で指定

2021年9月17日

書式
list-style-type: lower-greek;
使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<style>
/*小文字の古代ギリシャ文字 */
.cft {
list-style-type: lower-greek;
}
</style>
<!--クラスcftを適用 -->
<ul class="cft">
<li>東京</li>
<li>大阪</li>
<li>福岡</li>
</ul>
<style> /*小文字の古代ギリシャ文字 */ .cft { list-style-type: lower-greek; } </style> <!--クラスcftを適用 --> <ul class="cft"> <li>東京</li> <li>大阪</li> <li>福岡</li> </ul>
<style>
 /*小文字の古代ギリシャ文字 */
  .cft {
    list-style-type: lower-greek;
  }
</style>
<!--クラスcftを適用 -->
<ul class="cft">
  <li>東京</li>
  <li>大阪</li>
  <li>福岡</li>
</ul>

 

CSS

Posted by arkgame