• 关于position


    有四个属性:  
    
    static:静止
    relative:相对的
    fixed:固定的(广告等信息固定在网页的某个位置,不管你上下滑动位置不变)
    absolu:绝对的
    
    .box{
    display:inline-block;
     100px;
    height: 100px;
    background: blue;
    color: rgb(71, 16, 16);
    }
    
    
    #two {
    position: fixed;
    top: 200px;
    left: 100px;
    background: red;
    }
    
    
    #one{
    position: absolute;
    top: 1000px;
    left: 10px;
    background: black;
    
    }
     
    #three{
    position: sticky;
    top: 200px;
    left: 80px;
    background: purple;
    
    
    }
    

      

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Document</title>
        <link rel="stylesheet" href="positionCSS.css">
    </head>
    <body>
        <div class="box" id="one">one</div>
        <div class="box" id="two">two</div>
        <div class="box" id="three">three</div>
        <div class="box" id="four">four</div>
    </body>
    </html>
    

      

     
  • 相关阅读:
    oracle锁分类
    oracle中decode函数
    oracle分区
    oracle处理字符串
    oracle索引分类
    oracle表连接
    oracle处理字符串
    oracle分区
    木马中如何编程实现远程关机
    木马中如何编程实现远程关机
  • 原文地址:https://www.cnblogs.com/Jason1/p/9712491.html
Copyright © 2020-2023  润新知