list
list-style-type
<ul>や<ol>といったリストを、任意の形に変えます。
- list-style-type:disc;
- list-style-type:circle;
- list-style-type:decimal;
- list-style-type:lower-roman;
- list-style-type:upper-roman;
- list-style-type:lower-alpha;
- list-style-type:upper-alpha;
- list-style-type:none;
list-style-image
- list-style-image:url(http://xxx.xxx/image.gif);
- リストのマーカーに画像を使用します。
list-style-position
- list-style-position:inside;
- list-style-position:outside;
list-style
type、image、positionの三つの要素をまとめて「list-style」で記述することができます。
- list-style:none url(http://xxx.xxx/image.gif) inside;
- list-style-type/list-style-image/list-style-positionをまとめて決めることができます