垂直负边距在 IE8 中不起作用?

发布于 2024-11-19 09:29:04 字数 1279 浏览 2 评论 0原文

第一次在这里问我自己的问题:)

我正在一个网站上工作,我尝试使用通常的技巧将其垂直扩展到客户端窗口的底部:

html, body { height: 100%; }
.container { min-height: 100%; }

然后我想在主要内容上方添加一些标题,并在以下位置添加粘性页脚:底部。我将这两个内容包装在它们自己的容器中,并将标题拉到顶部,如下所示:

.top { position: relative; z-index: 1; height: 168px; }
.end { height: 58px; }

知道标题和粘性页脚的高度,然后我开始调整页面的总高度,以便它填满客户端窗口完全正确(没有滚动条),除非内容太长。我用负边距做到了这一点:

.container { overflow: hidden; min-height: 100%; margin-top: -164px; margin-bottom: -58px; }
.container-in { margin-top: 164px; margin-bottom: 58px; }

第二个容器位于第一个容器内,这是我放置每个页面的实际内容的地方。

所以,这在 Firefox 4/5 上运行得很好 - 绝对没有任何问题,它正如预期的那样。 Chrome 似乎也不错。但是,在 IE8 上,它忽略了 .container 上的负边距(我使用开发人员工具检查过)。容器在 .top 之后开始,由于 .container-in 的边距,因此 .top 和 .container-in 之间有 164px 的间隙。

有趣的是——如果我将IE8切换到IE7兼容模式,这个问题就不再出现了!负边距在 IE7 模式下表现得很好,但当然会破坏其他一些东西,所以告诉 IE 使用兼容模式不是一个选择。

关于如何解决此问题/使用不同的解决方案在所有浏览器中获得相同效果的任何想法(不需要 IE7)?我做错了什么吗?

编辑:经过一些更多的乐趣和游戏后,我发现通过用负 top: 坐标替换负边距(并将所有容器设置为相对),它在 IE8 上完美运行,但现在它留下了 222px 间隙 低于 firefox 中的 html 容器(根据 firebug)。使困惑!

EDIT2:从技术上讲,我相信我知道这里出了什么问题。 Internet Explorer 8 认为负边距是“溢出”,并且由于溢出:隐藏,它会杀死边距。如果我删除溢出:隐藏它不再有这种行为,但它破坏了设计的其余部分。有人有什么想法吗?

first time asking my own question here :)

I'm working on a website and I tried extending it vertically to the bottom of the client window using the usual trick:

html, body { height: 100%; }
.container { min-height: 100%; }

I then wanted to add some headers above the main content and a sticky footer at the bottom. I wrapped both of these in their own containers and pulled the header onto the top like so:

.top { position: relative; z-index: 1; height: 168px; }
.end { height: 58px; }

Knowing the height of the header and sticky footer, I then set out to adjust the total height of the page such that it would fill up the client window exactly (no scrollbars) unless the content was too long. I did this with negative margins:

.container { overflow: hidden; min-height: 100%; margin-top: -164px; margin-bottom: -58px; }
.container-in { margin-top: 164px; margin-bottom: 58px; }

The second container is within the first one and it's where I put the actual content of each page.

So, this works just fine on Firefox 4/5 - Absolutely nothing is off, it's just as intended. Chrome also seems ok. However, on IE8, it's ignoring the negative margin on .container (I checked with developer tools). The container begins after the .top, and as a result there's a 164px gap between the .top and the .container-in because of the .container-in's margin.

And the funny thing is - if I switch IE8 to IE7 compatibility mode, this problem no longer occurs! Negative margins behave just fine in IE7 mode, but of course a bunch of other stuff breaks, so telling IE to use compatibility mode isn't an option.

Any ideas on how to work around this problem/use a different solution to obtain the same effect in all browsers (IE7 not required)? Am I doing anything wrong?

EDIT: After some more fun and games I discovered that by replacing the negative margins with negative top: coordinates (and setting all containers as relative) it works perfectly on IE8 but now it leaves a 222px gap below the html container in firefox (according to firebug). Confused!

EDIT2: I believe I know what's wrong here, technically speaking. Internet Explorer 8 thinks the negative margin is 'overflow', and since overflow: hidden, it kills the margin. If I remove overflow: hidden it no longer has this behavior, but it breaks the rest of the design. Anyone has any ideas yet?

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

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

发布评论

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

评论(2

北风几吹夏 2024-11-26 09:29:04

关于条件注释如何创建仅限 IE 的样式表

尝试仅为具有负顶部坐标的 IE8 设置样式:

<!--[if gte IE 8]>
<style>
.container { top: -164px; }
</style>
<![endif]-->

About Conditional Comments. How To Create an IE-Only Stylesheet.

Try to set style only for IE8 with negative top coordinates:

<!--[if gte IE 8]>
<style>
.container { top: -164px; }
</style>
<![endif]-->
贱人配狗天长地久 2024-11-26 09:29:04

没有时间去超越这个:min-height 在 IE7 中是有问题的。转到此处了解更多信息: http://www.webdevout.net/browser-support-css

Don't have time to go beyond this: min-height is buggy in IE7. Go here for more info on that: http://www.webdevout.net/browser-support-css

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