对css语法中position值的理解

1.static

正常定位,就是默认定位,根据他的top,right,bottom,left的值

2.relative

根据他top,right,bottom,left的值偏移

3.absolute

不会给该元素预留位置,而是根据他的祖先元素定位,如果没有祖先元素则按初始放置,位置由top,right,bottom,left的值确定

4.fixed

直接按初始位置安放

5.sticky

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

posted on 2018-09-27 22:04  限度  阅读(111)  评论(0编辑  收藏  举报

导航