在IE8中的html无序列表的开头显示的额外项目符号项

时间:2011-06-13 16:58:23

标签: firefox internet-explorer-8 html-lists

在我的网站中,我在IE8中的每个无序列表<ul>的开头看到一个额外的空子弹,但不是Firefox。

我使用W3C验证器服务验证了该页面,并且没有HTML错误。如果我在IE8中切换到“兼容性”模式,那么额外的项目符号点就会消失。

有没有人遇到过这个?有什么问题?

3 个答案:

答案 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>关闭列表时,我也遇到了这个问题。通过添加结束标记可以解决此问题。