IE6、7下不显示前面小圆点bug

如果ul设置了width,在IE67测试就不显示列表小圆点了

 

<style type="text/css">
ul{
         width:100px;
}
</style>
</head>

<body>
<ul>
	<li>hello</li>
    <li>hello</li>
    <li>hello</li>
    <li>hello</li>
</ul>
</body>

 
IE6、7下不显示前面小圆点bug
 

 

 

解决方法:ul设置 padding-left:1em 问题解决

ul{
         width:100px;
         padding-left:1em;
}

 
IE6、7下不显示前面小圆点bug
 

你可能感兴趣的:(ie6)