在我的网站中,我在IE8中的每个无序列表<ul>
的开头看到一个额外的空子弹,但不是Firefox。
我使用W3C验证器服务验证了该页面,并且没有HTML错误。如果我在IE8中切换到“兼容性”模式,那么额外的项目符号点就会消失。
有没有人遇到过这个?有什么问题?
答案 0 :(得分:1)
我们在评论中的对话证明的错误是由css行ul{display: list-item;}
答案 1 :(得分:1)
我遇到了同样的问题,问题出在我的HTML上。
<ul>
<li><b>notice bold tag to left.</li>
<li>this is the second list item.</li>
<li>notice the end bold tag on the right.</b></li>
</ul>
就我而言,移动</b>
以外的</li>
解决了我的问题。
答案 2 :(得分:0)
当我忘记使用</li>
关闭列表时,我也遇到了这个问题。通过添加结束标记可以解决此问题。