#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
是TABEL細胞有助於推頁腳到頁面底部。CSS:強制孩子使用父(表單元格)高度
我怎樣才能得到部分#content
填補#content-wrap
的高度?
我不會使用絕對定位。