请参阅我的网站[已删除]
我的页脚按预期显示在视口的末尾。
当屏幕垂直调整大小时,页脚将重叠其上方的所有内容。
如何避免这种情况?
答案 0 :(得分:4)
结帐this sticky footer tutorial。您应该只需要以下代码。
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -142px; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
height: 142px; /* .push must be the same height as .footer */
}
/*
Sticky Footer by Ryan Fait
http://ryanfait.com/
*/
修改强>
您的包装中的负值与页脚的高度不匹配。这很可能是你问题的一部分。
#wrapper {
min-height: 100%;
min-width: 450px;
height: auto !important;
height: 100%;
/* your old code: margin: 0 auto -4em;*/
margin: 0 auto -83px;
}
footer {
background: url('images/foot_bg.jpg') center no-repeat,
url('images/foot_liq_bg.jpg') repeat;
position:absolute;
bottom:0;
width:100%;
height:83px;
min-width: 450px;
}
修改强>
您在html和正文上没有将高度设置为100%。因此,正文将仅设置为其父(html)的100%,而不是浏览器的100%。您必须将html的高度设置为100%才能正常工作。
答案 1 :(得分:1)
它重叠,因为你给它绝对定位。您需要将其与其他内容相对定位。使您的主要内容100%高度的页面,并将页脚放在下面。然后对页脚应用负边距,这与其高度的像素数量相同。
e.g。如果页脚height:100px;
使用margin-top:-100px;
答案 2 :(得分:0)
别担心,肖恩。你离它上班并不太远。
您需要在padding-bottom
元素上将margin-bottom
更改为body
,并从footer
元素中取绝对定位。此外,添加'push'div对于使这种粘性页脚方法起作用是必要的。
这个jsFiddle应该有所帮助,它对我有用:http://jsfiddle.net/4vunq/
HTML:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Vault-X</title>
<!--JS enabling IE <=8 to recognise HTML5 elements-->
<script type="text/javascript">
document.createElement ('header')
document.createElement ('footer')
</script>
<script type="text/javascript" src="javascript.js"></script>
<link href="style_01.css" title="one" rel="stylesheet" type="text/css">
</head>
<body>
<div id="switchoff">
<div id="wrapper">
<header></header>
<div id="switch">
<a href="#" onClick="lightSwitch();">
<img src="http://www.vault-x.com/images/switch.jpg">
</a>
</div>
<div id="content"><p class="switch">Hello World</p></div>
<div class='push'></div>
</div>
<footer></footer>
</div>
</body>
</html>
相关CSS:
* {
margin: 0;
}
html, body {
height: 100%;
}
footer, .push {
height: 83px; /* .push must be the same height as "footer" */
}
您已padding-bottom
而不是margin-bottom
:
body {
background:url('http://www.vault-x.com/images/body_bg.jpg') repeat-x;
background-color: #000;
margin-bottom:83px;
}
底部边缘也很重要:
#wrapper {
min-height: 100%;
min-width: 450px;
height: auto !important;
height: 100%;
margin: 0 auto -83px; /* bottom margin is negative value of footer's height */
}
您的页脚代码:
footer {
background: url('http://www.vault-x.com/images/foot_bg.jpg') center no-repeat,
url('http://www.vault-x.com/images/foot_liq_bg.jpg') repeat;;
width:100%;
height:83px;
min-width: 450px;
}
那应该就是这样做的。看起来很漂亮;还有祝你好运! :)
答案 3 :(得分:0)
我补充说:两者都解决了重叠的问题。
#footer {
position:relative;
width:100%;
height: 200px;
background-color:#7B7168;
margin-top: -200px;
padding-bottom:50px;
clear:both;
}