假设我有一个这样的html命令
<div id="header">>Header(logo, navigation menus etc)will be here, fixed height </div>
<div id="content"> Dynamic content with different length will be here. </div>
<div id="footer"> Footer of the page here, fixed height </div>
现在你可以看到,只有内容div随着长度的变化而变化。即使内容的高度小于填充整体,我也要确保使用屏幕。 (换句话说,内容的最小高度将是屏幕(height of the screen in pixel) - ( (height of header) + (height of footer) )
现在我可以看到可以使用min-widht,但IE不支持它,我该如何解决这个问题呢?