list-style-image

書式 list-style-image:url(画像のURI)
対象list-item要素
継承する
初期値 none
解説
リスト項目のマーク画像を指定します。noneを指定するとlist-style-typeで指定した形状になります。url(〜)でマーク画像のURIを指定すると画像が表示されます。
サンプルコード
<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-image:url(mark.gif);
}
--></style>
</head>
<body>
<img src="Default.png">
<ul>
<li>Sample
<li>list
<li>text
</ul>
</body>
</html>
実際のサンプルをダウンロード