我正在网站上工作,我需要设置div的高度和宽度,以覆盖浏览器视口的整个区域,就像许多现代网站一样。但是,我不能简单地将其高度设置为100%,因为其父元素是另一个div,其高度必须设置为大于浏览器窗口。还有另一种方法吗?
Here's设置类似于我网站的代码示例。
HTML
<div class="entireThing">
<div class="contentBox">
</div>
<div class="contentBox">
</div>
</div>
CSS
.entireThing {
height: 8000px;
width: 100%;
}
.contentBox {
height: 100%; /*This works only if parent is same size as window*/
}
答案 0 :(得分:14)
5.1.2. Viewport-percentage lengths: the ‘vw’, ‘vh’, ‘vmin’, ‘vmax’ units
视口百分比长度相对于初始包含块的大小。当初始包含块的高度或宽度发生变化时,它们会相应地缩放。
使用视口百分比长度。在这种情况下,100vh
。
.contentBox {
height: 100vh;
}
您还可以使用calc()
减去10px
上/下边距:
.contentBox {
height: calc(100vh - 20px); /* Subtract the 10px top/bottom margins */
margin: 10px;
color: white;
background-color: #222;
}
..值得指出的是,您需要在父元素上建立a new block formatting context才能prevent the collapsing margins。