处理需要这种布局的东西:
我需要内容具有屏幕上剩余空间的隐含大小。我尝试了很多东西
<div id="wrapper">
<div id="header">
</div>
<div id="content">
</div><!-- /content -->
<div id="footer">
</div>
</div>
这适用于显示表技术:
#wrapper {display: table; height: 100%; width: 100%; background: yellow;}
#header { display: table-row; background: black;height: 50px;}
#container { display: table-row; height: 100% }
#footer {display: table-row;background: black; height: 50px;}
但是没有它我该怎么办呢?
#wrapper {width: 100%; height: 100%; position: relative; min-height: 800px;}
#header {position: relative; width: 100%; height: 42px;}
#footer {height: 45px; width: 100%; background: #000; position: absolute; bottom: 0; overflow-y: hidden;}
我也不希望内容是位置:绝对