最小高度问题

时间:2010-04-08 00:11:46

标签: javascript html css

假设我有一个这样的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不支持它,我该如何解决这个问题呢?

1 个答案:

答案 0 :(得分:3)

您可能需要查看将页脚固定到页面底部的示例:http://www.xs4all.nl/~peterned/examples/csslayout1.html