定位流-绝对定位

1.什么是绝对定位?
绝对定位就是相对于body来定位

2.绝对定位注意点
2.1绝对定位的元素是脱离标准流的
2.2绝对定位的元素是不区分块级元素/行内元素/行内块级元素

 *{
            margin: 0;
            padding: 0;
        }
        div{
            width: 100px;
            height: 100px;
        }
        .box1{
            background-color: red;
        }
        .box2{
            background-color: green;
            position: absolute;
            /*float: left;*/
            left: 0;
            bottom: 0;
            /*right: 0;*/
            /*top: 0;*/

        }
        .box3{
            background-color: blue;
            /*width: 200px;*/
        }
        span{
            position: absolute;
            width: 50px;
            height: 100px;
            left: 100px;
            background-color: yellow;
        }
我是span
定位流-绝对定位_第1张图片
Paste_Image.png

你可能感兴趣的:(定位流-绝对定位)