「CSS」list-style-typeプロパティで黒い丸を指定する

2021年9月4日

書式
list-style-type: disc
使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<style>
/* 黒い丸*/
.cft {
list-style-type: disc;
}
</style>
<ul class="cft">
<li>東京</li>
<li>大阪</li>
<li>横浜</li>
</ul>
<style> /* 黒い丸*/ .cft { list-style-type: disc; } </style> <ul class="cft"> <li>東京</li> <li>大阪</li> <li>横浜</li> </ul>
<style>
  /* 黒い丸*/
  .cft {
    list-style-type: disc; 
  }
</style>
<ul class="cft">
  <li>東京</li>
  <li>大阪</li>
  <li>横浜</li>
</ul>

 

CSS

Posted by arkgame