搞清position:relative

2020-03-29  本文已影响0人  废弃的种子

position的五个属性中的relative

所需知识点

例子

    <div class="big">
        <div class="box"></div>
    </div>
   .big::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-color: blue;
        position: absolute;
        top: 0;
        left: 0;
    }
    .box {
        position: relative;
        /* z-index: -1; */
        width: 200px;
        height: 200px;
        background-color: red;
    }

    .big {
        position: relative;
        width: 500px;
        height: 500px;
        border: solid 1px #ddd;
    }

以上为个人理解

position:sticky

阮一峰
应用:
https://jsbin.com/qukusoyolu/edit?html,css,output

div {
  height: 100vh;
  width: 100%;
  position: sticky;
  top: 0;
}
 
上一篇下一篇

猜你喜欢

热点阅读