#wrapper {
display: table;
min-height: 100%;
height: 100%;
margin: 0px auto;
}
#header-wrap,
#content-wrap,
#footer-wrap {
display: table-row;
height: 1px;
}
#content-wrap {
height: auto;
}
<div id="wrapper">
<div id="header-wrap"></div>
<div id="content-wrap">
<section id="content"></section>
</div>
<div id="header-wrap"></div>
</div>
#wrapper
#header-wrap
、#content-wrap
および#footer-wrap
は、ページの下部にフッターをプッシュするのに役立つテーブル セルであるテーブルとして機能します。
の高さ#content
を埋める セクションを取得するにはどうすればよいですか?#content-wrap
絶対配置は使用しません。