gpt4 book ai didi

html - 粘性页脚没有 100% 宽度

转载 作者:行者123 更新时间:2023-11-28 17:26:46 24 4
gpt4 key购买 nike

我有一个具有以下结构的网站:

<html>
<body>
<div id="page">
<div id="anyContent"></div>
<div id="pagecontent">
<div id="bigContent"></div>
<div id="footer"></div>
</div>
</div>
</body>
</html>

bigContent 是动态的,通常会延伸到很大的尺寸(通过其宽度和高度证明)。因为很多元素是动态呈现到 div 中的,所以 bigContent 没有设置为静态宽度。

如何强制页脚具有与 bigContent 相同的宽度?看我的例子 jsFiddle .

html {
margin: 0;
padding: 0;
height: 100%;
min-width: 100%;
}

#page {
min-height: 100%;
min-width: 100%;
position: relative;
}

#bigContent {
background: black;
height: 3000px;
width: 5000px;
}

#footer {
background: blue;
clear: left;
bottom: 0px;
width: 100%;
height: 100px;
}

最佳答案

您可以将一些属性设置为 #pagecontent 然后它将根据您的需要工作:

html {
margin: 0;
padding: 0;
height: 100%;
min-width: 100%;
}
#pagecontent {
float: left;
position: relative;
}
#pagecontainer {
min-height: 100%;
min-width: 100%;
position: relative;
}
#bigContent {
background: black;
}
#footer {
background: blue;
height: 25px;
width: 100%;
}
<div id="pagecontainer">
<div id="anyContent"> </div>
<div id="pagecontent">
<div id="bigContent" style="width:500px; height:150px;"></div>
<div id="footer"></div>
</div>
</div>

关于html - 粘性页脚没有 100% 宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27037864/

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