我正在尝试使 div 具有 100% 的高度。这总是让人头疼...我希望我的#wrapper 是 100% 并且我的#middle 也是..
<div id="wrapper" style="margin-left:auto; margin-right:auto; width:900px;">
<div id="top" style="height: 100px;width:inherit;">
This stays top, with static height.
</div>
<div id="middle" style="width:inherit;">
This should take all space that is left in height...
</div>
<div id="footer" style="height:50px;width:inherit;">
This stays in bottom, with static height
</div>
</div>