如果ul设置了width,在IE6、7测试就不显示列表小圆点了
<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>
解决方法:ul设置 padding-left:1em 问题解决
ul{
width:100px;
padding-left:1em;
}