position元素定位详述

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title>定位详述</title>
    <style>
        /* css3对position属性的相关定义:
        static:无特殊定位,对象遵循正常文档流。top,right,bottom,left等属性不会被应用。
        relative:对象遵循正常文档流,但将依据top,right,bottom,left等属性在正常文档流中偏移位置。而其层叠通过z-index属性定义。
        absolute:对象脱离正常文档流,使用top,right,bottom,left等属性进行绝对定位。而其层叠通过z-index属性定义。
        fixed:对象脱离正常文档流,使用top,right,bottom,left等属性以窗口为参考点进行定位,当出现滚动条时,对象不会随着滚动。而其层叠通过z-index属性定义。*/

        /* static,无特殊定位,它是html元素默认的定位方式,即我们不设定元素的position属性时默认的position值就是static,
        它遵循正常的文档流对象,对象占用文档空间,该定位方式下,top、right、bottom、left、z-index等属性是无效的 */

        /* relative定位,又称为相对定位,相对定位相对的是它原本在文档流中的位置而进行的偏移,而我们也知道relative定位也是遵循正常的文档流,
        它没有脱离文档流,但是它的top/left/right/bottom属性是生效的,可以说它是static到absoult的一个中间过渡属性,
        最重要的是它还占有文档空间,而且占据的文档空间不会随 top / right / left / bottom 等属性的偏移而发生变动,
        也就是说它后面的元素是依据虚线位置( top / left / right / bottom 等属性生效之前)进行的定位,这点一定要理解 */

        /* top / right / left / bottom 属性是不会对relative定位的元素所占据的文档空间产生偏移,
        margin / padding会让该文档空间产生偏移 */
        .first {
            width: 200px;
            height: 100px;
            border: 1px solid red;
            position: relative;
            top: 20px;
            left: 20px;
            margin: 100px;
        }

        .second {
            width: 200px;
            height: 100px;
            border: 1px solid blue;
        }


        /* left:0; right:0; top:0; bottom:0; margin:auto;会使child居中,如果child没有宽高,则会继承父集的宽高,适合body 内的遮罩 */
        .child {
            width: 50px;
            height: 50px;
            background-color: aqua;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            margin: auto;
        }

        /* absoulte定位,使用absoult定位的元素脱离文档流后,就只能根据祖先类元素(父类以上)进行定位,而这个祖先类还必须是以postion非static方式定位的,
        举个例子,a元素使用absoulte定位,它会从父类开始找起,寻找以position非static方式定位的祖先类元素(注意,一定要是直系祖先才算哦~),直到<html>标签为止,
        这里还需要注意的是,relative和static方式在最外层时是以<body>标签为定位原点的,
        而absoulte方式在无父级是position非static定位时是以<html>作为原点定位。<html>和<body>元素相差9px左右。*/

        /* 为什么absoulte定位要加 top:0; left:0;其实加上这两个属性是完全必要的,
        因为我们如果使用absoulte或fixed定位的话,必须指定 left、right、 top、 bottom 属性中的至少一个,
        否则left/right/top/bottom属性会使用它们的默认值 auto ,
        这将导致对象遵从正常的HTML布局规则,在前一个对象之后立即被呈递,简单讲就是都变成relative,会占用文档空间,这点非常重要,
        很多人使用absolute定位后发现没有脱离文档流就是这个原因,这里要特别注意~~~
        实验一下设置left/right/top/bottom 为auto,absoulte定位会不会变成relative

        少了left/right/top/bottom属性不行,那如果我们多设了呢?记住下面的规则:
        如果top和bottom一同存在的话,那么只有top生效。
        如果left和right一同存在的话,那么只有left生效。 */
        html {
            border: 1px dashed green;
        }

        body {
            border: 1px dashed purple;
        }

        /* #first {
             200px;
            height: 100px;
            border: 1px solid red;
            position: relative;
        }

        #second {
             200px;
            height: 100px;
            border: 1px solid blue;
            position: absolute;
            top: 0;
            left: 0;
        } */

        /* 祖先类的margin会让子类的absoulte跟着偏移,而padding却不会让子类的absoulte发生偏移 */
        #first {
            width: 200px;
            height: 100px;
            border: 1px solid red;
            position: relative;
            margin: 40px;
            padding: 40px;
        }

        #second {
            width: 200px;
            height: 100px;
            border: 1px solid blue;
            position: absolute;
            top: 0;
            left: 0;
        }

        /* 固定定位(fixed):
        fixed定位,又称为固定定位,它和absoult定位一样,都脱离了文档流,并且能够根据top、right、left、bottom属性进行定位,
        但不同的是fixed是根据窗口为原点进行偏移定位的,也就是说它不会根据滚动条的滚动而进行偏移。*/

        /* z-index属性:
        z-index,又称为对象的层叠顺序,它用一个整数来定义堆叠的层次,整数值越大,则被层叠在越上面,当然这是指同级元素间的堆叠,
        如果两个对象的此属性具有同样的值,那么将依据它们在HTML文档中流的顺序层叠,写在后面的将会覆盖前面的。
        需要注意的是,父子关系是无法用z-index来设定上下关系的,一定是子级在上父级在下。
        Note:使用static 定位或无position定位的元素z-index属性是无效的。 */

    </style>
</head>

<body>
    <!-- <div class="first">
        <div class="child"></div>
    </div>
    <div class="second"></div> -->

    <!-- <div id="first">relative</div>
    <div id="second">absoult</div> -->

    <div id="first">first
        <div id="second">second</div>
    </div>

</body>

</html>

参考:https://www.cnblogs.com/keyi/p/5818103.html

工欲善其事 必先利其器
原文地址:https://www.cnblogs.com/fengyouqi/p/10881996.html