home > 『Web標準の教科書』読者サポートページ > 第3章 第13節
第3章 第13節(p.271-277)
ol { list-style-type: lower-roman }
:
:
<h4>ディスプレイサイズ設定の上位3位</h4>
<ol>
<li>1,028×768ピクセル</li>
<li>1,280×1,024ピクセル</li>
<li>800×600ピクセル</li>
</ol>
ol { list-style-type: lower-roman }
li { display: inline }
ul {
list-style-type: disc;
list-style-image: url(../images/marker.gif);
}
:
:
<h4>Web上で一般に利用される画像形式</h4>
<ul>
<li>GIF(.gif)</li>
<li>JPEG(.jpg/.jpeg)</li>
<li>PNG(.png)</li>
</ul>
ul {
list-style-type: disc;
list-style-image: url(../images/marker.gif);
list-style-position: inside;
}
ul { list-style: disc url(../images/marker.gif) inside }
ul { list-style: disc }
ul { list-style: disc none outside }
ul {
list-style-type: circle;
marker-offset: 2em;
}