美文网首页
定位布局 (relative)

定位布局 (relative)

作者: 爱新觉罗狗子 | 来源:发表于2016-11-23 20:32 被阅读0次
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>定位2.html</title>
        <style>
        *{
            margin: 0;
            padding: 0;
        }
        .all{
            width: 2000px;
            height: 5000px;
        }
        .div1{
            width: 200px;
            height: 200px;
            border: 1px solid red;
            background-color: red;
            /* relative(相对定位):基于自身定位 */
            position: relative;
            left: 50px;
            top: 50px;
            /*
                relative定位:
                    1.不脱离文档流。
                    2.不改变自己标签属性。
                    3.基于自身定位。
                    4.可以用来微调。
                    5.如果不写定位值,和没设置定位效果一样。
                    6.一般给绝对定位做父级使用。
            */
        }
        .div2{
            width: 200px;
            height: 200px;
            border: 1px solid green;
            background-color: green;
        }
            
    
        </style>
    </head>
    <body>
    
        <div class="all">
            
        <div class="div1"></div>
        <div class="div2"></div>
    
        </div>
        
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:定位布局 (relative)

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