【原创】css position 总结

参考了http://www.kei.tw/blogger/39-5.html

 

position :static relative absolute fixed

 

static 不可重叠,忽略坐标

 

relative 无坐标类似static,有坐标则是相对坐标,相对其本应该处得位置,正数为 下 右 方向。

 

absolute 默认重叠,坐标是相对于其parent的边框距离,如果是 right 值,正数越大,越往左走,负数向右走, 无parent相对于浏览器。

 

fixed 无论父子关系,以浏览器坐标左上角为准,下 右 方向为正数。

 

 

你可能感兴趣的:(css position)