UL 在 IE8 兼容模式下不显示

发布于 2024-10-14 22:29:48 字数 100 浏览 2 评论 0原文

我有一个基本的无序列表,在 IE8 兼容模式下不显示,但当关闭兼容模式时,它会正确显示。

我发现了问题。事实证明,它不喜欢列表项上的background:none 属性。

I have a basic unordered list that isn't displaying in IE8 compatibility mode, but when compatibility mode is turned off it displays correctly.

I discovered the problem. It turned out to be that it doesn't like the background:none property on a list item.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

枉心 2024-10-21 22:29:48

我在IE8中尝试了以下代码(兼容模式关闭)
有用 !!

<html>
<body>
<ul type="disc">
<li>hii</li>
<li>bye</li>
<li>hello</li>
</ul>
</body>
</html>

I have tried the following code in IE8(compatible mode turned off)
It works !!

<html>
<body>
<ul type="disc">
<li>hii</li>
<li>bye</li>
<li>hello</li>
</ul>
</body>
</html>
万劫不复 2024-10-21 22:29:48

事实证明,这是列表项上的背景:无的问题。我通过设置背景图像来制作自定义项目符号,在第一个项目上我只是将其设置为无背景,但这导致整个列表消失。

This turns out to be a problem with background:none on a list item. I was doing custom bullets by setting the background image, and on the first item i was just setting it to background none, but this caused the whole list to disappear.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文