当前位置: 首页 > 图文教程 > 网页制作 > CSS样式表 > 跨浏览器的CSS固定定位

CSS样式表
一列固定宽度布局和背景图片绝对定位的实现代码
CSS也要语义化说明
CSS 模块化的理解
css 一些技巧及易错的细节
网页自动满屏实现代码
CSS 一些使用用法
div+css table布局实现代码
CSS 完美兼容IE6/IE7/FF的通用hack方法
css 背景图片平铺技巧
修复网页在IE8 下的显示兼容问题
IE CSS半透明的注意事项
CSS Display与Visibility的不同
CSS 进度条实现代码
css实现div在下拉菜单之上
必须知道的10个不常用HTML标签
css 去除连接时的虚线框
CSS教程:彻底弄懂闭合浮动元素
CSS实现强制浏览器分页
CSS教程:背景background属性应用
CSS网页布局困扰新手的问题

CSS样式表 中的 跨浏览器的CSS固定定位


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 84 ::
收藏到网摘: n/a


本文介绍了跨浏览器的CSS固定定位,请看下面的例子:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
……
<style type="text/css">
#fixed{position:fixed;top:5em;right:0;……} /*针对IE7、Opera、Firefox一行搞定*/
</style>
/*IE6中利用容器对溢出内容的处理方式来实现的*/
<!–[if IE 6]>
<style type="text/css">
html{overflow:hidden;}
body{height:100%;overflow:auto;}
#fixed{position:absolute;right:17px;}
/*fixed元素的绝对位置是相对于HTML元素来说,滚动条是body元素的,这是设置right:17px的原因*/
</style>
<![endif]–>
<!–[if lt IE 6]>
<style type="text/css">
#fixed{position:absolute;top:expression(eval(document.body.scrollTop   50));}
</style>
<![endif]–>
</head>
<body>
<div id="wrapper">
……
</div>
<div id="fixed"><h2>{position:fixed}</h2></div>
</body>
</html>