高度为 100% 高度的 HTML 布局

发布于 2024-12-14 06:29:59 字数 387 浏览 0 评论 0原文

我需要帮助解决某个问题。基本上,我需要一个 div,里面有一个表格,单元格中有 div,等等。另外,我需要最外面的 div 具有 100% 的高度和宽度(覆盖整个页面),并且子代要相应地计算它们的高度,除了那些内容高度大于其内容高度的 div(它们应该显示滚动条)

我准备了一个带有测试页面的小提琴:

http://jsfiddle.net/S2YSh/6/

到目前为止,只有 Google Chrome 按我的计划显示,IE 不会计算高度 100% 的内边距和边距,Firefox 会拉伸与内容(无滚动条)

如果有人可以帮助我(最好使用相同的 HTML 结构),我将不胜感激。

I need help with a certain problem. Basically, I need a div with a table inside it with divs in the cells etc. Also, I need the most outer div to have 100% height and width (cover the whole page) and the descendants to calculate their height accodringly, except for those divs whose content height is greater than theirs (they should show a scrollbar)

I've prepared a fiddle with a test page:

http://jsfiddle.net/S2YSh/6/

So far, only Google Chrome shows it as I plan, IE doesn't calculate paddings and margins in the height 100% and Firefox stretches with the content (no scrollbar)

If anyone can help me (preferably with the same HTML structure) it will be greatlu appreciated.

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

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

发布评论

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

评论(2

零崎曲识 2024-12-21 06:29:59

你可以这样做:

.right{
    float:right;
    width:200px;
    height:100%;
    background:red;
}
.left{
    overflow:hidden;
    background:green;
    height:100%;
}
.right, .left{
padding:20px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

html, body{
    height:100%;
}

检查这个http://jsfiddle.net/S2YSh/9/

You can do it like this:

.right{
    float:right;
    width:200px;
    height:100%;
    background:red;
}
.left{
    overflow:hidden;
    background:green;
    height:100%;
}
.right, .left{
padding:20px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

html, body{
    height:100%;
}

Check this http://jsfiddle.net/S2YSh/9/

世界等同你 2024-12-21 06:29:59

试试这个:

<div style="height:100%;width:100%;position:absolute;top:0;left:0;">
  <table>...</table>
</div>

Try this:

<div style="height:100%;width:100%;position:absolute;top:0;left:0;">
  <table>...</table>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文