CSS 有關Position = absolute (絕對位置 是相對於誰而言)

來源:互聯網
上載者:User

css中有絕對位置法,以前一直搞不懂絕對位置是相對於誰而言的絕對位置。

 

現在搞清楚了,不是相對於父元素,也不是相對於BODY。

 

而是相對於所屬元素樹中,相鄰最近的那個顯示標識了position屬性的元素。

 

比如

 

Code
<div id="a" style="position:relative">
  <div id="b">
    <div id="c" style="position:absolute">
    </div>
  </div>
</div>

 

div#c就是根據div#a進行絕對位置。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.