好吧,伙计们,我的问题,我试图让我的
<div id="content" style="margin:0 auto;"><!--AJAX Loaded Content--></div>
在我之间尽可能多地走高
<div id="header" style="position:fixed;top:0;width:100%;height:300px;"></div>
和我的
<div id="footer" style="position:fixed;bottom:0;width:100%;height:200px;"></div>
我唯一的CSS规则是
html,body{position:fixed;height:100%;width:100%;}
我尝试height:100%;
在我的设备上使用,#content
但它仍然显示为height:auto;
...此外,整个东西仍然需要在移动设备上正确显示。所以我的问题是:我应该添加/删除什么 CSS 规则以使我#content
占据其他两个规则之间的整个空间<div>
?