定位布局 (absolute)

2016-11-23  本文已影响0人  爱新觉罗狗子
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>定位3.html</title>

    <style>
    *{
        margin: 0;
        padding: 0;
    }
    .all{
        width: 500px;
        height: 500px;
        border: 1px solid green;
        position: relative;
        /*margin: 0 auto;*/
    }
        .div1{
            width: 200px;
            height: 200px;
            background-color: red;
            /* absolute:绝对的。*/
            position: absolute;
            bottom: 0px;
            right: 0px;
            /* absolute:绝对相位
                1.脱离文档流。
                2.元素相互性改变,不再是定位标签,而是定位元素。
                3.默认内容撑开大小。
                4.可以设置宽高,以及其他CSS样式。
                5.基于祖宗辈中的定位元素(相对定位、绝对定位、浏览器定位)定位,找到一个最近的定位元素,如果找不到就基于窗口定位。
                6.绝对定位主要用于重叠。

            */
        }
        .div2{
            width: 200px;
            height: 200px;
            background-color: yellow;
        }
        .father{
            width: 800px;
            height: 800px;
            border: 1px solid black;
            position: relative;
            }
-做一个定位练习(练习之前说一下z-index);


    </style>
</head>
<body>
    <div class="father">
        <div class="all">
            <div class="div1"></div>
            <!-- <div class="div2"></div> -->
        </div>
    </div>





</body>
</html>
上一篇 下一篇

猜你喜欢

热点阅读