網頁

2013年2月27日

[html, css] div自動高度

div自動高度範例:
<div style='min-height:100%;height:100%;'></div>

注意:外框物件必須設定高度,div自動高度功能才會有作用。


搭配table使用:
<table><tr>
<td height=200>
<div style='min-height:100%;height:100%;'></div>
</td>
</tr></table>