當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > DIV+CSS > CSS列表圖像屬性list-style-image

CSS列表圖像屬性list-style-image

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

移動端

【實(shí)例介紹】

CSS列表圖像屬性list-style-image

除了傳統(tǒng)的各種項(xiàng)目符號外,css還提供了屬性list.style.image,可以將項(xiàng)目符號顯示為任意的圖片。

【基本語法】

list-style-image:none  |   url(圖像地址)

【語法介紹】

在列表圖像屬性中,可以使用兩個屬性值:none和uRL。

【實(shí)例代碼】

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無標(biāo)題文檔</title> <style type="text/css" media="all"> ul { list-style-image: url("images/list.png");} </style> </head> <body> <ul> <li>使用圖片顯示列表</li> <li>使用圖片顯示列表</li> <li>使用圖片顯示列表</li> <li>使用圖片顯示列表</li> </ul> </body> </html>

【代碼分析】

在代碼中,加粗部分的標(biāo)簽是設(shè)置圖像為項(xiàng)目符號,如圖所示。

列表圖像屬性list-style-image運(yùn)行效果
 【素材及源碼下載】

請點(diǎn)擊:CSS列表圖像屬性list-style-image 下載本實(shí)例相關(guān)素材及源碼

 

標(biāo)簽: CSS列表  圖像  屬性