首页 > 开发 > CSS > 正文

CSS网页制作:让IE6支持position: fixed

2024-07-11 09:02:01
字体:
来源:转载
供稿:网友

武林网(www.vevb.com)文章简介:让IE6 比较完美地支持position: fixed.

html {
_background-image: url(about:blank);
_background-attachment: fixed; /* prevent screen flash in IE6 */
}


div{

overflow: visible;
position: fixed;
top: 50px;

_position: absolute; /*IE6 用absolute模拟fixed*/
_top: expression(documentElement.scrollTop + 50 + "px"); /*IE6 动态设置top位置*/

}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表