gpt4 book ai didi

html - 为什么不能高度:100% work?

转载 作者:搜寻专家 更新时间:2023-10-31 21:55:37 25 4
gpt4 key购买 nike

这是我的 html:

<div class="head">hello</div>
<div class="main">nice</div>

我希望 div.main 的高度延伸到页面底部。我试图将它的高度设置为 100%,但它不起作用:

.head{
background-color: red;
width: 400px;
}
.main{
background-color: green;
width: 400px;
height: 100%
}

fiddle :http://jsfiddle.net/cVRvj/

最佳答案

您必须将 htmlbody 设置为 100%。它们里面包含的div只能拿多少就拿多少。

html, body
{
height: 100%;
}

在这里查看“HTML 高度 100%”的其他一百万个谷歌结果:http://www.dailycoding.com/Posts/howtoset100tableheightinhtml.aspx

关于html - 为什么不能高度:100% work?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8351599/

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