gpt4 book ai didi

html - 我无法让我的页脚变粘

转载 作者:太空宇宙 更新时间:2023-11-04 04:04:29 24 4
gpt4 key购买 nike

我正在尝试为我的网站制作一个粘性页脚。我试过http://www.cssstickyfooter.com/的方法和其他一些方法,没有任何效果。这是我在 cssstickyfooter.com 上的代码。

<!DOCTYPE html>
<html lang="en-US">
<head>
<!--[if !IE 7]>
<style type="text/css">
#wrap {display:table;height:100%}
</style>
<![endif]-->

<style type="text/css">
* {margin:0;padding:0;}

html {height: 100%;}

body {
height: 100%;
color: #131212;
background-color: #e6e6e6;
}

#wrap {min-height: 100%;}

#main {overflow:auto;
padding-bottom: 26px;}

#footer {position: relative;
margin-top: -26px;
height: 26px;
clear:both;
background-color: #b0b0b0}

body:before {
content:"";
height:100%;
float:left;
width:0;
margin-top:-32767px;
}

h1 {
font-size: 350%
}
h6 {
font-size: 40%
}

a:link {
color: #5e5e5e;
text-decoration: none;
}

a:visited {
text-decoration: none;
color: #5e5e5e;
}

a:hover {
text-decoration: underline;
color: #5e5e5e;
}
</style>
</head>
<body>
<div id="wrap">
<center>
<div id="header">
<h1>my header here</h1>
</div>
<br />
<div id="main">
<h2>my content here</h2>
</div>
<div id="footer">
<h3>my footer here</h3>
</div>
</center>
</div>
</body>
</html>

这是怎么回事?

编辑这个的一个jsfiddle http://jsfiddle.net/2WwZf/

这很好用:

 <div id="wrap">
<center>
<div id="header">
<h1>my header here</h1>
</div>
<br />
<div id="main">
<h2>my content here</h2>
</div>
</center>
</div>
<div id="footer">
<h3>my footer here</h3>
</div>

但是当我这样做时,它仍然失败。

 <center>
<div id="wrap">
<div id="header">
<h1>my header here</h1>
</div>
<br />
<div id="main">
<h2>my content here</h2>
</div>
</div>
<div id="footer">
<h3>my footer here</h3>
</div>
</center>

最佳答案

你的 footer div 需要在 wrap 之外div,像这样:

<div id="wrap">
<div id="header">
<h1>my header here</h1>
</div>
<br />
<div id="main">
<h2>my content here</h2>
</div>
</div>
<div id="footer">
<h3>my footer here</h3>
</div>

您还可以删除 <center>标签并应用 text-align:center 样式到您想要居中的元素。

#wrap {
min-height: 100%;
text-align:center;
}

#footer {
position: relative;
margin-top: -26px;
height: 26px;
clear:both;
background-color: #b0b0b0;
text-align:center;
}

关于html - 我无法让我的页脚变粘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21587952/

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