我为一个列表设置了一个list-style:url(图片地址)
但是,发觉,在float没有设置为left的情况下,则显示正常。
而我设置了float为left了。结果显示不了?请问是怎么回事?代码如下:
<style type="text/css">
<!--
body{
text-align:center;}
div.index{
width:900px;
height:700px;
background:#CCFFCC;
font-size:16px;
font-weight:900;
}
div.link{
width:800px;
height:100px;
}
div.link ul{
display:block;
list-style-image:url(xx.jpg);
}
div.link ul li{
float:left; //这里如果注释掉就可以显示
}
div.link ul li a{
font-family:"仿宋_GB2312", "楷体_GB2312";
text-decoration:none;
margin:3px;
}
div.link ul li a:hover{
color:#6699FF;
text-decoration:underline;
}
-->
</style>