我有一个包含标题和不相关内容的其他三个div的页面,像这样。
+-----------+
| header |
+-----------+
| 1 | 2 |
+-----+-----+
| 3 |
+-----------+
我需要的是表格要占用页面上的剩余空间,但不能超出视口(页面上应该没有垂直滚动条)。
换句话说,1、2和3的高度应恰好是剩余空间的50%(在标题之后)。在没有JS的情况下,又如何在不固定标题的高度的情况下,如何做到这一点?
最佳答案
可以使用CSS表和许多嵌套的div
元素来完成。
body, html {
margin: 0;
height: 100%;
}
.wrapper {
height: 100%;
background-color: tan;
display: table;
width: 100%; /* optional, depends on layout */
}
.header-row {
display: table-row;
}
.header-row img {
display: block;
width: 100%;
}
.content-row {
height: 100%;
display: table-row;
}
.content-row {
border: 1px dotted blue;
box-sizing: border-box;
height: 100%;
display: table-cell;
}
.content {
display: table;
width: 100%;
height: 100%;
}
.row {
display: table-row;
}
.row .cell {
display: table-cell;
height: 50%;
width: 100%;
border: 1px dotted blue;
}
.row .split {
width: 50%;
height: 100%;
float: left;
border: 1px dotted blue;
box-sizing: border-box;
}
<div class="wrapper">
<div class="header-row">
<div class="header">
<img src="http://placehold.it/1000x200">
</div>
</div>
<div class="content-row">
<div class="content">
<div class="row">
<div class="cell">
<div class="split">split</div>
<div class="split">split</div>
</div>
</div>
<div class="row">
<div class="cell">stuff</div>
</div>
</div>
</div>
</div>
关于html - 纯CSS解决方案,用于固定高度与剩余空间的关系,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26288917/