如何获得一个固定的标题,页脚与可滚动内容?像这样的
http://www.cssplay.co.uk/layouts/fixit.html.我可以看看源代码获取CSS,但我只想知道最小的CSS和HTML我需要得到这个工作。提前致谢。
解决方法
这样的东西
<html> <body style="height:100%; width:100%"> <div id="header" style="position:absolute; top:0px; left:0px; height:200px; right:0px;overflow:hidden;"> </div> <div id="content" style="position:absolute; top:200px; bottom:200px; left:0px; right:0px; overflow:auto;"> </div> <div id="footer" style="position:absolute; bottom:0px; height:200px; left:0px; right:0px; overflow:hidden;"> </div> </body> </html>