「CSS」list-style-typeプロパティをsquareで黒い四角を指定

2021年9月17日

書式
list-style-type: square;塗りつぶされた四角形です。

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<style>
/* 塗りつぶされた四角形 */
.cft {
list-style-type: square;
}
</style>
<!--クラスcftを適用 -->
<ul class="cft">
<li>東京</li>
<li>大阪</li>
<li>福岡</li>
<li>横浜</li>
</ul>
<style> /* 塗りつぶされた四角形 */ .cft { list-style-type: square; } </style> <!--クラスcftを適用 --> <ul class="cft"> <li>東京</li> <li>大阪</li> <li>福岡</li> <li>横浜</li> </ul>
<style>
 /* 塗りつぶされた四角形 */
  .cft {
    list-style-type: square;
  }
</style>
<!--クラスcftを適用 -->
<ul class="cft">
  <li>東京</li>
  <li>大阪</li>
  <li>福岡</li>
  <li>横浜</li>
</ul>

 

CSS

Posted by arkgame