目錄css
CSS position
屬性規定一個元素在文檔中的定位類型。top
,right
,bottom
和left
屬性則決定了該元素的最終位置。html
Object.style.position = static | relative | absolute | fixed | sticky
瀏覽器
先解釋下什麼是文檔流:
將窗體自上而下分紅一行行, 並在每行中按從左至右的順序排放元素,即爲文檔流佈局
默認值,元素出如今正常的流中。位置設置爲static的元素,它始終處於正常文檔流給予的位置,不影響其餘元素的偏移。(static 元素會忽略任何 top、bottom、left 、 right 或者 z-index 聲明)。
位置設置爲 relative 的元素,相對於其正常位置進行定位,該元素會在正常文檔流中會佔據位置,從而不影響其餘元素的偏移。此元素的位置可經過 "left"、"top"、"right" 以及 "bottom" 屬性來規定。所以 "left:20px" 會將元素移至元素正常位置左邊 20 個像素的位置。
咱們用個簡單例子分析spa
<div style="width: 200px; height:200px; background-color:green;"> <div style="width: 100px; height:100px;background-color: #cff;"> 1 </div> <div style="width: 100px; height:100px; background-color: #ccf;"> 2 </div> </div>
<div style="width: 200px; height:200px; background-color:green;"> <div style="width: 100px; height:100px;background-color: #cff; position: relative;top: 10px;left:10px;"> 1 </div> <div style="width: 100px; height:100px; background-color: #ccf;"> 2 </div> </div>
記住一點,relative是相對自身定位。加上margin/padding/border以後,是在這些屬性起做用以後,再來計算relative。ssr
<div style="width: 200px; height:200px; background-color:green;"> <div style="width: 100px; height:100px;background-color: #cff; margin: 10px; padding: 10px; border: 10px solid red; position: relative;top: 10px;left:10px;"> 1 </div> <div style="width: 100px; height:100px; background-color: #ccf;"> 2 </div> </div>
加上margin/padding/border以後圖對比:
3d
位置設置爲 absolute 的元素,相對於非`static`定位之外的第一個父元素進行絕對定位,脫離了正常文檔流,該元素不佔據正常文檔流空間,所以會影響其餘元素的偏移。此元素的位置可經過 "left"、"top"、"right" 以及 "bottom" 屬性來規定。
咱們用個簡單例子分析code
<div style="width: 200px; height:200px; background-color:green; position: relative;"> <div style="width: 100px; height:100px;background-color: #cff;"> 1111111111 </div> <div style="width: 100px; height:100px; background-color: #ccf;"> 我是2,我在下面 .....我是2,。我在下面,會被覆蓋? </div> </div>
設置爲絕對定位以後,被定位的元素會以 「第一個設置了定位的祖先元素」 定位,這裏就是第一個div元素。orm
<div style="width: 200px; height:200px; background-color:green; position: relative;"> <div style="width: 100px; height:100px;background-color: #cff; position: absolute;top: 10px; left: 10px;"> 1111111111 </div> <div style="width: 100px; height:100px; background-color: #ccf;"> 我是2,我在下面 .....我是2,。我在下面,會被覆蓋? </div> </div>
記住一點,absolute是相對第一個被定位的祖先元素。加上margin/padding/border以後,也是在這些屬性起做用以後,再來計算absolute。htm
<div style="width: 200px; height:200px; background-color:green; position: relative;"> <div style="width: 100px; height:100px;background-color: #cff; position: absolute;top: 10px; left: 10px;margin: 10px; padding: 10px;border: 10px solid red;"> 1111111111 </div> <div style="width: 100px; height:100px; background-color: #ccf;"> 我是2,我在下面 .....我是2,。我在下面,會被覆蓋? </div> </div>
加上margin/padding/border以後,absolute定位的對比圖:
位置被設置爲 fixed 的元素,可相對於瀏覽器視口(viewport)進行定位。不論窗口滾動與否,元素都會留在那個位置。工做於 IE7(strict 模式),低版本的IE不支持。此元素的位置可經過 "left"、"top"、"right" 以及"bottom" 屬性來規定。`fixed`屬性會建立新的層疊上下文。當元素祖先的`transform`屬性非`none`時,容器由視口改成該祖先。
正常狀況的定位,請看最後的例子。這裏着重說下transform
屬性非none
值時候,fixed
的表現。transform
屬性向元素應用2D 或 3D 轉換。該屬性容許咱們對元素進行旋轉,縮放,移動或傾斜。
<div style="transform: rotate(10deg); width: 200px; height: 200px; border: 1px dotted red;">我定義transform屬性 <div style="position: fixed; left: 50px; bottom: 100px; border: 1px solid red; background-color: #ffc;"> 我是第二個fixed,我在哪裏?我使用fixed定位 </div> </div>
體現的佈局:
今後圖中,能夠看出。fixed
定位是相對於父元素有transform
屬性非none
值來決定的。
盒位置根據正常流計算(這稱爲正常流動中的位置),而後相對於該元素在流中的 flow root(BFC)和 containing block(最近的塊級祖先元素)定位。在全部狀況下(即使被定位元素爲 table 時),該元素定位均不對後續元素形成影響。當元素 B 被粘性定位時,後續元素的位置仍按照 B 未定位時的位置來肯定。position: sticky 對 table 元素的效果與 position: relative 相同。
https://codepen.io/weiqinl/pen/BqeQoQ
裏面有position各類屬性的狀況。