CSS 列表符號(hào)類型 2.有序列表
提問人:劉團(tuán)圓發(fā)布時(shí)間:2020-11-18
有序列表的列表符為數(shù)字,它的作用是說明其包含的列表是有序的。有序列表的標(biāo)簽為<ol></ol>。
【例題】使用有序列表
代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<ol>
<li>items1</li>
<li>items2</li>
<li>items3</li>
<li>items4</li>
</ol>
</body>
</html>
繼續(xù)查找其他問題的答案?
相關(guān)視頻回答
點(diǎn)擊加載更多評(píng)論>>