Front-end-learning-to-organize-notes icon indicating copy to clipboard operation
Front-end-learning-to-organize-notes copied to clipboard

position的值有哪些,区别是什么

Open Chocolate1999 opened this issue 4 years ago • 2 comments

Chocolate1999 avatar Jan 12 '21 07:01 Chocolate1999

static:静态定位,是position属性的默认值,表示无论怎么设置top、bottom、right、left属性元素的位置(与外部位置)都不会发生改变。

relative:相对定位,表示用top、bottom、right、left属性可以设置元素相对与其相对于初始位置的相对位置。

absolute:绝对定位,表示用top、bottom、right、left属性可以设置元素相对于其父元素(除了设置了static的父元素以外)左上角的位置,如果父元素设置了static,子元素会继续追溯到祖辈元素一直到body。

fixed:绝对定位,相对于浏览器窗口进行定位,同样是使用top、bottom、right、left。

HearLing avatar Jan 29 '21 03:01 HearLing

@HearLing 还有个sticky布局

inspire-lts avatar Mar 05 '21 07:03 inspire-lts