我创建了一个粘性页脚,一个拥抱窗口底部的页脚,无论是否有足够的内容来填充页面。我的实现很好,除了在Internet Explorer中渲染时的一个小问题。如果内容填充页面并且我的任何内容div具有未指定的高度,则页脚下方会出现裂缝。如果内容包含具有或不具有固定高度的跨度,也会发生这种情况。
以下是我的实施。如果我给Div 2一个固定的高度,页脚紧紧地抱住窗户的底部,但是没有设置高度就会出现裂缝。我一直无法解决这个问题。任何关于如何预防它的建议都将受到赞赏。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Sticky Footer</title>
<style type="text/css">
Html, body {
margin: 0;
height: 100%;
background-color: lightgreen;
}
header {
height: 40px;
background-color: green;
}
footer {
bottom: 0;
position: absolute;
width: 100%;
height: 40px;
background-color: gray;
}
.fixedHeightDiv {
border: 2px;
border-style: solid;
height: 500px;
}
.container {
min-height: 100%;
position: relative;
}
.content {
padding-bottom: 40px;
}
</style>
</head>
<body>
<div class="container">
<header>Header</header>
<div class="content">
<div class="fixedHeightDiv">
Div 1
</div>
<div>
Div 2
</div>
<div class="fixedHeightDiv">
Div 3
</div>
</div>
<footer>Footer</footer>
</div>
</body>
</html>