メニュー

CSS

TOP_PAGEへ

リスト

リストマークの表示指定
list-style-type : (種類);
リストマークの種類を指定します。
list-style-type: none; 表示無し
list-style-type: disc; ●黒丸(標準)
list-style-type: circle; ○白丸
list-style-type: square; ■四角
list-style-type: lower-roman;

小ローマ字

list-style-type: upper-roman; 大ローマ字
list-style-type: lower-alpha; アルファベット小文字
list-style-type: upper-alpha; アルファベット大文字
list-style-type: lower-greek; ギリシャ小文字(IE不)
list-style-type: decimal; 数字
リストマークに画像を表示
list-style-image: url(画像へのパス);
リストマークに画像を表示します。