position inherit 定位

Posted 大熊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了position inherit 定位相关的知识,希望对你有一定的参考价值。

inherit  继承父元素   定位

举例  :

<div class="father">

  <p></p>

</div>

div{

  position:fixed;

  left:0;

  top:0;

}

p{

  position:inherit;//继承了父元素的fixed;此时就会相对于浏览器定位;不会相对于父元素定位,阿懂?

  left:10000px;

  top:1000px;

}

以上是关于position inherit 定位的主要内容,如果未能解决你的问题,请参考以下文章

css----position(定位)理解

position和display的取值和用法

CSS中的Position属性和Float属性

css相关问题

好程序员web前端分享定位锚点透明

前端面试题