UL 在 IE8 兼容模式下不显示
我有一个基本的无序列表,在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在IE8中尝试了以下代码(兼容模式关闭)
有用 !!
I have tried the following code in IE8(compatible mode turned off)
It works !!
事实证明,这是列表项上的背景:无的问题。我通过设置背景图像来制作自定义项目符号,在第一个项目上我只是将其设置为无背景,但这导致整个列表消失。
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.