「CSS」list-style-typeプロパティで白い丸を指定する
構文
list-style-type: circle;
使用例
<style>
.cft {
list-style-type: circle; /* 中空円 */
}
</style>
<ul class="cft">
<li>東京</li>
<li>大阪</li>
<li>横浜</li>
<li>福岡</li>
</ul>
Coding Changes the World
構文
list-style-type: circle;
使用例
<style>
.cft {
list-style-type: circle; /* 中空円 */
}
</style>
<ul class="cft">
<li>東京</li>
<li>大阪</li>
<li>横浜</li>
<li>福岡</li>
</ul>