Topテクニックメモスタイルシートネタ > フッターをページの一番下にいつも置く

フッターをページの一番下にいつも置く

ページの内容が短いと、フッターがページ中央などにきたりしてすごく見栄えが悪い…
ページの内容が短くてもフッターがページの一番下に表示される方法です。


<html>
<body>
<div id="contents">
<div id="main">本文</div>
<div id="footer">フッター</div>
</div>
</body>
</html>
html{
height:100%;
}
body{
height:100%;
}
#contents {
position: relative;
min-height:100%;
_height:100%;
}

★フッターの高さを50pxにしたい場合
#footer {
position; absolute;
bottom:0px;
height: 50px;
}
#main {
padding-bottom: 50px;
}

「フッターをページの一番下にいつも置く」関連本

Akasa Rira
みつけたきせき