我在这里使用粘性页脚:http://ryanfait.com/sticky-footer/
CSS看起来像这样:
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -4em;
}
.footer, .push {
height: 4em;
}
HTML就像这样:
<html>
<head>
<link rel="stylesheet" href="layout.css" ... />
</head>
<body>
<div class="wrapper">
<p>Your website content here.</p>
<div class="push"></div>
</div>
<div class="footer">
<p>Copyright (c) 2008</p>
</div>
</body>
</html>
如果我在包装器中添加另一个div,是否可以以某种方式设置其高度以填充包装器?谢谢!
答案 0 :(得分:0)
只需将height: 100%;
添加到要添加到包装器的div中