div+css 圖片項(xiàng)目編號(hào)
文章導(dǎo)讀:
<html>
<head>
<title>圖片符號(hào)</title>
<style>
<!--
body{
background-color:#c1daff;
}
ul{
font-family:Arial;
font-size:13px;
color:#00458c;
list-style-image:url(icon1.jpg); /* 圖片符號(hào) */
}
-->
</style>
</head>
<body>
<p>自行車</p>
<ul>
<li>Road cycling 公路自行車賽</li>
<li>Track cycling 場(chǎng)地自行車賽</li>
<li>sprint 追逐賽</li>
<li>time trial 計(jì)時(shí)賽</li>
<li>points race 計(jì)分賽</li>
<li>pursuit 爭(zhēng)先賽</li>
<li>Mountain bike 山地自行車賽</li>
</ul>
</body>
</html>