我需要使子级高度相对于视口。使用 HTML:
<div class="parent">My divider
<div class="child">
Inside the div
</div>
</div>
和 CSS:
.t1 {
background:#f00;
color:#fff;
}
.t2 {
background:#212121;
height:100vh;
}
http://jsfiddle.net/hr8sL/7646/
从示例中可以看出,总是有这个小间隙,因为它考虑了父项的整体高度。但是,我只需要子级从父级填充视口的"其余部分"。
我应该怎么做?我尝试了很多其他事情,但没有足够的结果
我会这样做。
使用 css calc()
函数,我们可以计算剩余高度。
body {
margin: 0;
/* This is used to reset any browser-default margins */
}
.t1 {
background: #f00;
color: #fff;
height: 20px;
}
.t2 {
background: #212121;
height: calc(100vh - 20px);
}
<div class="t1">
My divider
</div>
<div class="t2">
Inside the div
</div>