IE8!重要的错误?

发布于 2024-11-28 04:31:53 字数 459 浏览 0 评论 0原文

我可能会遗漏其他东西,但我正在一个我没有构建的网站上工作,该网站有大量非常混乱的 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 技术交流群。

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

发布评论

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

评论(1

无妨# 2024-12-05 04:31:53

内联样式覆盖外部样式

inline style override external style

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