美文网首页
固定定位

固定定位

作者: 爱抽烟的臭屁虫 | 来源:发表于2019-05-30 19:31 被阅读0次

                            固定定位

    固定定位

    .box1{

    width:200px;

    height:200px;

    background-color:red;

    }

    .box2{

    width:200px;

    height:200px;

    background-color:yellow;

    /*

    当元素的position属性设置fixed时,则开启了元素的固定定位

    固定定位也是一种绝对定位,它的大部分特点都和绝对定位一样

    不同的是:

    固定定位永远都会相对于浏览器窗口进行定位

    固定定位会固定在浏览器窗口某个位置,不会随滚动条滚动

    IE6不支持固定定位

    */

            position:fixed;

    left:0px;

    top:0px;

    }

    .box3{

    width:200px;

    height:200px;

    background-color:yellowgreen;

    }

    <div style='...'></div>

    <div class='box4' style='...'>

        <div cclass='box2'></div>

    </div>

    <div class='box3'></div>

    代码实现:

    固定定位 滚动滑轮之后

    固定定位会将一个块保持在一个位置不变

    相关文章

      网友评论

          本文标题:固定定位

          本文链接:https://www.haomeiwen.com/subject/hdkbtctx.html