固定高度的纯CSS解决方案作为剩余空间的函数

时间:2014-10-09 22:23:36

标签: html css

我有一个页面包含一个标题和另外三个不相关内容的div,就像这样。

+-----------+
|   header  |
+-----------+
|  1  |  2  |
+-----+-----+
|     3     |
+-----------+

我需要的是表格占用页面上的剩余空间,但不能超出视口(页面上不应有垂直滚动条)。

换句话说,1,2和3的高度应该是剩余空间的50%(在标题之后)。如何在没有JS的情况下完成此操作并且不修复标题的高度?

1 个答案:

答案 0 :(得分:2)

可以使用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>
&#13;
&#13;
&#13;