【图解CSS#Position】

关于CSS position,来自MDN的描述:

CSS position属性用于指定一个元素在文档中的定位方式。top、right、bottom、left 属性则决定了该元素的最终位置。

先看一个图片:


child没设置position的样式

代码如下:


  
child1-1
child1-2
child1-3
child1-4

这里展示的就是一个正常“文档流”,

Normal flow
Boxes in the normal flow belong to a formatting context, which may be block or inline, but not both simultaneously. Block-level boxes participate in a block formatting context. Inline-level boxes participate in an inline formatting context.

个人理解:顾名思义就是像写文档一样,一行一行的排列,如图,每个child 都是一个60*60 的小方块,即使在他们右边有多余的位置,但是它们还是占一行。position就是每个元素的定位属性,而默认就是 position = static,即上图中parent 和 child 都是展示的文档流样式。

而position属性一共有以下取值:

  1. static
    默认值。没有定位,元素出现在正常的流中(忽略 top, bottom, left, right 或者 z-index 声明)

  2. relative
    生成相对定位的元素,相对于其正常位置进行定位。 如我们将上面的代码改成

    // ...
    .child1-2{
        background-color:crimson;
        width: 60px;
        height: 60px;
        position: relative;
        left: 20px;
        top: 30px;
    }
    
    relative

    可以看到 child1-2 在原来的位置上,左边多出了 20px ,距离顶部多出了 30px

  3. absolute
    生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。
    我们将上例的child1-2恢复,然后操作child1-3

    .child1-3{
          background-color:darkcyan;
          width: 60px;
          height: 60px;
          position: absolute;
          left: 20px;
          top: 30px;
    }
    
    absolute

    可以看到,child1-3 的位置已经和 parent 无关了(因为 parent 的 position = "static"),很多时候,都会将 parent 设置成relative 来和 absolute child 配合使用。
    我们再改一下 child1-3 的代码

    .child1-3{
        background-color:darkcyan;
        width: 60px;
        height: 60px;
        position: absolute;
        left: 20px;
        bottom: 30px;   // 注意这个
      }
    
    bottom 30px

    bottom 30px 增加浏览器的高度

    可以看到,child1-3 其实是一直跟着浏览器的高度在变化的。

  4. fixed

    .child1-4{
          background-color: darkgreen;
          width: 60px;
          height: 60px;
          position: fixed;
          bottom: 30px;
          left: 70px;
    }
    
    fixed

    而且,当浏览器高度变化时,他们两个也会跟着变化。
    但是,两者的区别就在于,当 parent 设置成 position = relative 时,

    .parent1{
          background-color: chocolate;
          width: 300px;
          height: 300px;
          margin: 25px 50px 75px;
          position: relative;
    }
    
    parent position = relative

    即此时,child1-3 的 left,right 等以 parent 为基准。

  5. inherit
    规定应该从父元素继承 position 属性的值。
    这个就不需要图解了。。。。

你可能感兴趣的:(【图解CSS#Position】)