gpt4 book ai didi

html - 如何使用内容 HTML/CSS 扩展页面?

转载 作者:行者123 更新时间:2023-11-28 10:42:05 25 4
gpt4 key购买 nike

基本上我的页面包括

a) 一个主分区,#mainb) 标题,#headerc) 一个 div,#containd) 页脚,#footer

页面内容进入包含 div。

代码:

#main{
position: absolute;
top: 0px;
left: 15%;
width: 70%;
min-height: 100%;
border: 1px solid black;

}

#header{
position: relative;
top: 0px;
left: 0px;
width: 100%;
height: 100px;
}

#contain{
position: relative;
top: 40px;
padding-top: 20px;
left: 5%;
width: 90%;
min-height: 600px;
border:1px solid green;

}


#footer{
width: 100%;
height: 5%;
bottom: 0;
border-top: 1px dotted black;
position: absolute;
}

如您所见,包含的 div 的最小高度为 600 像素。当页面填满时,这会正确展开,但会展开越过页脚并离开“主要”div。

显然我希望页脚完全保留在主体的底部次,但 main 只是不根据包含 div 扩展即使它的最小高度为页面的 100%。

最佳答案

将你的#bottom div 设置为相对静态高度,如 50px 或 100px,并删除#main min-height。

http://jsfiddle.net/JH2q9/3/

#main {
position: absolute;
top: 0px;
left: 15%;
width: 70%;
border: 1px solid black;
}
#contain {
position: relative;
left: 5%;
width: 90%;
border: 1px solid green;
/* min-height: 1000px; yes, its work if you need that */
}
#footer {
width: 100%;
height: 50px;
bottom: 0;
border-top: 1px dotted black;
margin-top: 10px;
position: relative;
}

关于html - 如何使用内容 HTML/CSS 扩展页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23095186/

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