list-style

書式 list-style:list-style-typeの値 list-style-imageの値 list-style-positionの値
対象list-item要素
継承---
初期値 各プロパティの初期値
解説
リスト項目の設定を一括して指定します。各プロパティの設定順序は問いません。また、noneを指定するとマークなしのリストになります。
サンプルコード
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<style type="text/css"><!--
body { margin:0px; }
ul { position:absolute; left:10px; top:10px;
list-style:decimal none inside;
}
--></style>
</head>
<body>
<img src="Default.png">
<ul>
<li>Sample
<li>list
<li>text
</ul>
</body>
</html>
実際のサンプルをダウンロード