list-style

プロパティの説明

list-styleは、箇条書き要素の先頭に関する全ての設定をまとめて指定することができるプロパティです。<ul>, <ol>, <li>に指定することができます。

指定できる値

図形の種類(list-style-type)
disc, none, circle, square, decimal, lower-roman, upper-roman
画像(list-style-image)
画像を置いてあるURL
位置(list-style-position)
inside, outside

サンプル

サンプルページ

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
 "https://www.w3.org/TR/html4/strict.dtd">
<html lang="ja">

<head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <meta http-equiv="Content-Style-Type" content="text/css">
 <title>サンプルページ</title>
 <style type="text/css">
 <!--
 .l1{list-style:circle inside;}
 -->
 </style>
</head>

<body>
 <h1>サンプルページ</h1>
 <ul>
  <li>通常</li>
  <li class="l1">白丸で位置を内側に指定。</li>
 </ul>
</body>

</html>