gpt4 book ai didi

html - DIV 高度到 100%

转载 作者:太空宇宙 更新时间:2023-11-04 00:08:52 28 4
gpt4 key购买 nike

我有以下内容:

HTML

  <body>
<div id="header"></div>
<div id="logo"></div>
<div id="container">
<h1>Welcome message</h1>
text text text text text text text text text text text text text text
</div>
</body>

CSS

html{
background-color: #000000;
color: white;
}

html,body, img{
margin: 0;
padding: 0;
border: 0;
}

#header{
position: absolute;
left: 0;
top: 0;
background-color: yellow;
width: 100%;
height: 537px;
z-index: -1;
}

div#logo{
width: 385px;
height: 141px;
background: white;
margin-left: auto;
margin-right: auto;
}

#container{
width: 964px;
margin-left: auto;
margin-right: auto;
min-height: 100%;
height: 100%;
background-color: #000000;
padding-left: 6px;
padding-right: 6px;
}

我想让 div#container 一直延伸到底部,但它没有。

最佳答案

你还必须拉伸(stretch) bodyhtml:

html, body {
height:100%;
}

看看这个Fiddle .

关于html - DIV 高度到 100%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13809116/

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