當前位置:軟件學堂 > 資訊首頁 > 網(wǎng)絡編程 > DIV+CSS > CSS列表符號的混用

CSS列表符號的混用

2012/11/26 12:29:19作者:佚名來源:網(wǎng)絡

移動端

【實例介紹】

CSS列表符號的混用

在定義列表元素時,有時候會混用各種列表符號。當混用的列表符號中包含順序問題時,同一列表中會計算所有列表項目的數(shù)目,確定當前列表項目的顯示方式。

【實例代碼】

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>列表符號的混用</title> <style> .liststyle1 {list-style-type:disc;} .liststyle2 {list-style-type:circle;} .liststyle3 {list-style-type:decimal;} .liststyle4 {list-style-type:lower-roman;} li {font-size:36px;} </style> </head> <body> <ul> <li class="liststyle1">列表項目</li> <li class="liststyle2">列表項目</li> <li class="liststyle3">列表項目</li> <li class="liststyle4">列表項目</li></ul> </body> </html>

【代碼分析】

在代碼中,加粗部分的標簽是在<url>元素的每個列表項目中,使用了不同的列表符號屬性值,同時定義了<1i>元素中文本的大小,如圖所示。

列表符號的混用運行效果
 【素材及源碼下載】

請點擊:CSS列表符號的混用 下載本實例相關素材及源碼

 

標簽: CSS列表  符號  混用