博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

浏览器静止内容的技术

Posted on 2009-02-17 09:58  周末  阅读(148)  评论(0编辑  收藏  举报

兼容:IE7,8,FF

 

Code
<style type="text/css">
body
{margin:0;padding:0;}
#fixed
{position:fixed;top:5em;right:0;background:#000;color:#fff;}
</style>

 

兼容:ie6

Code
<!--[if IE 6]> 
<style type="text/css">
    html{overflow:hidden;}
    body{height:100%; overflow:auto;}
    #fixed{position:absolute;right:17px;}
</style>
<![endif]
-->

兼容:ie5.5 --

Code
<!--[if lt IE 6]>
<style type="text/css">
#fixed{position:absolute;top:expression(eval(document.body.scrollTop + 50));}
</style>
<![endif]
-->