码迷,mamicode.com
首页 > Web开发 > 详细

css中postion的fixed和absolute区别

时间:2020-04-12 10:53:15      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:strong   block   pre   ice   css   lang   html   ati   data-   

一直对positon的几个定位方式不是特别理解,记录下

fixed
固定定位,参照位置是浏览器窗口的左上角,即坐标点为(0px, 0px)

absolute
绝对定位,参展位置是离当前元素最近的定位方式为fixed,absolute,relative的祖先原则的左上角,举个例子

<div style="posistion:relative" id="p1">
    <div style="posistion:fixed" id="p2">
        <div style="position:static" id="p3">
            <h2 style="postion:absolute;left:10px;top:10px">我的参照坐标是id=p2</h2>
        </div>
    </div>
</div>

通过上面的例子,可知h2的绝对定位参照点是id=p2的父元素,p3是静态的static定位,不能当作定位点

css中postion的fixed和absolute区别

标签:strong   block   pre   ice   css   lang   html   ati   data-   

原文地址:https://www.cnblogs.com/baimeishaoxia/p/12683750.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!