css – 跨浏览器固定标题,页脚和可滚动内容

前端之家收集整理的这篇文章主要介绍了css – 跨浏览器固定标题,页脚和可滚动内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何获得一个固定的标题,页脚与可滚动内容?像这样的 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>
原文链接:https://www.f2er.com/css/220551.html

猜你在找的CSS相关文章