「CSS」list-style-typeプロパティで黒い丸を指定する
書式
list-style-type: disc
使用例
<style> /* 黒い丸*/ .cft { list-style-type: disc; } </style> <ul class="cft"> <li>東京</li> <li>大阪</li> <li>横浜</li> </ul>
Coding Changes the World
書式
list-style-type: disc
使用例
<style> /* 黒い丸*/ .cft { list-style-type: disc; } </style> <ul class="cft"> <li>東京</li> <li>大阪</li> <li>横浜</li> </ul>