CSS 列高度不继承

发布于 2024-12-11 12:11:21 字数 358 浏览 1 评论 0原文

我正在尝试得到这个... http://jsfiddle.net/K2NPz/1/

变成... http://postimage.org/image/1zjcktz2c/

左图为当前,右边是 理想的。我似乎无法让它工作,因为继承属性(和 100%)实际上没有做任何事情。它确实在 Quirks 模式下工作,但我需要它与实际的 Doctype(HTML5 或 XHTML 1.0 Strict)一起工作。

I'm trying to get this... http://jsfiddle.net/K2NPz/1/

Turned into... http://postimage.org/image/1zjcktz2c/

The left picture is current, the right is ideal. I can't seem to get it working though since the inherit property (and the 100%) aren't actually doing anything. It DOES work in Quirks mode, but I need it working with an actual realistic Doctype (HTML5 or XHTML 1.0 Strict).

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

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

发布评论

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

评论(1

寂寞美少年 2024-12-18 12:11:21

height:100% 表示父元素的 100%,但 renderzone div 没有指定高度。根据W3C的规范,当“height:100 %”...

如果未明确指定包含块的高度(即,它取决于内容高度),并且该元素未绝对定位,则该值计算为“auto”。

围绕“auto”的逻辑相当复杂,因此我无法给您如何使用它的答案,但我可以通过设置所有父容器(包括“body”)来获得与您想要的类似的东西& "html") 到 height:100% 按照 这个文档。它需要调整,但应该能让你走上正确的方向。

height:100% means 100% of the parent element, but the renderzone div has no height specified. According to the W3C's specifications, when "height:100%" ...

If the height of the containing block is not specified explicitly (i.e., it depends on content height), and this element is not absolutely positioned, the value computes to 'auto'.

The logic surrounding "auto" is considerably complex, so I can't give you an answer for how to work with that, but I am able to get something similar to what you want by setting all of the parent containers (including "body" & "html") to height:100% as suggested by this document. It will need tweaking, but should set you in the right direction.

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