2012/05/24

divを ページ(100%)に隙間なく 合わせる


html, body { height:100%; }
#wrap {
  background: #ffc;
  width: 100%;
  height: 100%;
}
#contents {
  background: #ddd; レイアウト確認の時は背景色付けるといいです
  margin: 0 30px;
}
<body>
<div id="wrap">
<div id="contents">
</div><!--/contents-->
</div><!--/wrap-->
逆に、divを決められたサイズで固定したい場合は↓こちら
参考) min-width、min-height、max-width、max-heightをIE6でも実装する方法 | CSS Lecture




0 件のコメント: