• CSS:position:fixed使用(转)


     

    position属性规定元素的定位类型,即建立元素布局所用的定位机制。任何元素都可以定位,不过绝对定位或固定定位元素会生成一个块级框,而不论该元素本身是什么类型。相对定位元素会相对于它在正常流中的默认位置偏移。
    position属性值除了默认的static外,还有relative、absolute、fixed,本文重点讨论fixed属性值。
     
    一、position:fixed属性的含义

    fixed:生成绝对定位的元素,相对于浏览器窗口进行定位。元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。

    我们平时所说的固定定位指的就是fixed,设置了固定定位的元素不会随滚动条上下滚动。

     

    二、一般的 position:fixed; 实现方法

    #top{position:fixed;bottom:0;right:20px}实现了id为top的元素固定在浏览器的底部和距离右边20个像素的位置
    #top{position:fixed;top:20px;right:20px}实现了id为top的元素固定在距离浏览器的顶部20个像素和距离右边20个像素的位置
     
    三、IE6下position:fixed; 实现方法
    IE6中是不能直接使用 position:fixed; 。你需要一些 CSS Hack 来解决它
    相同的还是让 <div id="top">...</div> 元素固定在浏览器的底部和距离右边的20个像素,这次的代码是:#top{
    position:fixed;
    bottom:0;
    right:20px;
    _position:absolute;
    _top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));
    }
    right 跟 left 属性可以用绝对定位的办法解决,而 top 跟 bottom 就需要用上面的表达式来实现。其中在_position:absolute; 中的 _ 符号只有 IE6 才能识别,目的是为了区分其他浏览器
     

    1、使元素固定在浏览器窗口的顶部

    #top{

    _position:absolute;

    _top:expression(eval(document.documentElement.scrollTop));
    }

    2、使元素固定距浏览器窗口的顶部a像素的位置

    #top{

    _position:absolute;

    _top:expression(eval(document.documentElement.scrollTop));

    _margin-top:a;

    }或者

    #top{

    _position:absolute;

    _top:expression(eval(document.documentElement.scrollTop+a));

    }

    3、使元素固定在浏览器窗口的底部

    #top{
    _position:absolute;
    _top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));
    }

    4使元素固定在距浏览器窗口的底部b像素的位置

    #top{

    _position:absolute;
    _top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));

    _margin-bottom:b;

    }或者

    #top{

    _position:absolute;
    _top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||b)-(parseInt(this.currentStyle.marginBottom,10)||b)));

    }

    四、IE6下的闪动问题

    问题还没有完全解决。在用了上面的办法后,你会发现:被固定定位的元素在滚动滚动条的时候会闪动。解决闪动问题的办法是在 CSS 文件中加入:

    *html{background-image:url(about:blank);background-attachment:fixed;}

    其中 * html选择器hack是给 IE6 识别的。

    到此,IE6 的 position:fixed; 问题已经被解决了

    原文:http://blog.sina.com.cn/s/blog_51048da701018jzw.html

  • 相关阅读:
    Truffle 安装
    Windows10 修改代理
    windows远程桌面(mstsc)不能复制粘贴的解决办法(转)
    响应式布局 笔记汇总
    Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'hive.DELETEME1643159643943' doesn't exist
    Oracle安装问题:Win10系统离线安装framework3.5报0x8024402c的问题
    NameNode启动问题:Failed to load an FSImage file!
    他们的名言警句&推荐书籍
    没有可以使用的 internal type for both IPv4 and IPv6 Addresses (A+AAAA)记录
    【转】ExtJs 正则
  • 原文地址:https://www.cnblogs.com/haciont/p/6248567.html
Copyright © 2020-2023  润新知