ここからスティッキー フッターを使用しています: 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 を追加した場合、どうにかしてその高さを設定してラッパーを埋めることは可能ですか? ありがとう!