min-heightは100%でページ内容が100%を超えたら縦に伸びるというマークアップ。
アプリ風のSPサイトとかでよくやります。
<div class="page">
<div class="page-content">
<p>content</p>
</div>
</div>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.page {
position: relative;
height: auto;
min-height: 100%;
background-color: #ccc;
}
min-height: 100%の場合
See the Pen jELVNO by Youhei Isoakwa (@yuhiisk) on CodePen.
http://codepen.io/yuhiisk/pen/jELVNO