gpt4 book ai didi

CSS:页脚不能粘在底部

转载 作者:太空宇宙 更新时间:2023-11-04 12:57:30 26 4
gpt4 key购买 nike

我试图让我的页脚贴在页面底部,但不知何故它做不到。我在互联网上寻找答案但没有成功,所以我决定在这里试一试。

http://jsfiddle.net/f54eq3w8/

html:

<div id="container">test</div>
<footer></footer>

CSS:

html{
height:100%;
position:relative;
min-height:100%;
}

body{
height:100%;
padding:0;
display:inline-block;
width:100%;
min-height:100%;
}

footer{
position:relative;
background-color:#003300;
color:red;
width:100%;
height:100px;
border-top:4px solid #B8B8B8;
}

#container{
width:1024px;
margin:auto;
margin-top:60px;
min-height:100%;
}

最佳答案

JSFiddle - DEMO

在容器内使用一个额外的 div 将页脚推送到与页脚高度相同的高度,并将底部边距应用到容器的页脚高度的负值。

HTML:

<div id="container">
<div class="footer-push">
</div>
</div>
<footer></footer>

CSS:

html, body {
background-color: #00FF00;
height: 100%;
margin: 0px;
}
#container {
z-index: 999;
background-color: #00FF00;
position: relative;
width: 1024px;
margin: 0 auto;
min-height: 100%;
margin: 0px auto -104px auto;
}
.footer-push {
position: relative;
height: 104px;
}
footer {
z-index: 99999;
position: relative;
height: 100px;
background-color: #003300;
width: 100%;
border-top:4px solid #B8B8B8;
}

关于CSS:页脚不能粘在底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25703548/

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