CSS 中 Position relative 和 absolute区别

Relative Positioning

A relative positioned element is positioned relative to its normal position.
 
The reserved space for the element is still preserved in the normal flow.
 
relative 位置是相对元素的父元素的位置。left, top 是相对其父元素进行调整, 但是位置还是和DOM中的看起来一致(in normal flow)。
 

Absolute Positioning

An absolute position element is positioned relative to the first parent element that has a position other than static

Absolutely positioned elements are removed from the normal flow.

absolute 位置是相对第一个具有position(fixed, relative, absolute) 属性的父元素位置, 实际位置可能和DOM中的不一致(be removed from the normal flow)。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。