「CSS」list-style-typeリストの項目を大文字のローマ数字で指定
書式
list-style-type: upper-roman;
使用例
<style>
/* 大文字のローマ数字 */
.cft {
list-style-type: upper-roman;
}
</style>
<!--クラスcftを適用 -->
<ul class="cft">
<li>東京</li>
<li>大阪</li>
<li>福岡</li>
</ul>
<style>
/* 大文字のローマ数字 */
.cft {
list-style-type: upper-roman;
}
</style>
<!--クラスcftを適用 -->
<ul class="cft">
<li>東京</li>
<li>大阪</li>
<li>福岡</li>
</ul>
<style> /* 大文字のローマ数字 */ .cft { list-style-type: upper-roman; } </style> <!--クラスcftを適用 --> <ul class="cft"> <li>東京</li> <li>大阪</li> <li>福岡</li> </ul>