gpt4 book ai didi

html - 如何使页面部分全尺寸?

转载 作者:行者123 更新时间:2023-11-28 16:42:59 24 4
gpt4 key购买 nike

下午好!

我必须将着陆页的每个部分拉伸(stretch)到整页大小。在我的情况下是否可以仅使用 CSS 规则?

该部分如下所示:

enter image description here

本节的CSS规则:

element.style {
width: 100%;
height: 100%;
z-index: 2;
position: absolute;
left: 0;
top: 0;
}

最佳答案

您可以使用 100vh 将高度设置为视口(viewport)的高度。

/* for demo only ... */

body {
margin: 0;
}
div:nth-child(1) {
background: red;
}
div:nth-child(2) {
background: green;
}
div:nth-child(3) {
background: blue;
}

/* Important bit... */

div {
height: 100vh;
}
<div></div>
<div></div>
<div></div>

关于html - 如何使页面部分全尺寸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33499292/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com