IE8!重要的错误?
我可能会遗漏其他东西,但我正在一个我没有构建的网站上工作,该网站有大量非常混乱的 css 和多个 !important 覆盖。一个布局问题在除某些版本的 IE 之外的所有浏览器中都没有问题。
当我使用开发人员工具查看 css 时,我可以看到 1em 的边距被 0.5em 的边距覆盖,但是页面上的边距太大了。尽管 1em 的边距看起来像是被覆盖(在开发人员工具中),但当我禁用该样式时,它工作得很好,换句话说,边距变得更少。
那么,如果使用多个 !important,IE 是否会存在不尊重正常覆盖层次结构的错误?或者这可能是开发人员工具中的错误?
通过覆盖我的意思是像下面的例子,其中第二个CSS应该覆盖第一个:
.div2 {
margin: 1em !important;
}
body .div2 {
margin: 0.5em !important;
}
谢谢
I might be missing something else, but im working on a site i didnt buid which has loads of very messy css and multiple !important overrides. One layout issue is fine in all browsers except some versions of IE.
When I look at the css with developer tools i can see the margin of 1em is being overiden by a margin of 0.5em, however the margin it too big on the page. Even though the margin of 1em looks like its being overridden (in developer tools) when I disable the style it works fine, in other words the margin becomes less.
So, are their any bugs where IE doesn't respect the normal hierarchy of overrides if multiple !importants are used? Or could this be a bug in the developer tools instead?
By overrides I mean something like the example below, where the 2nd css should override the first:
.div2 {
margin: 1em !important;
}
body .div2 {
margin: 0.5em !important;
}
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
内联样式覆盖外部样式
inline style override external style