HTML中position的五种属性值

来源:互联网 发布:交管12123一直网络失败 编辑:程序博客网 时间:2024/06/02 08:15

position的几种属性值:static, relative, absolute, fixed, inherit

<html ><head><meta http-equiv="content-type" content="text/html" charset="gb2312"><style> *{margin:0;padding:0} </style> </head> <body>     <div style="position:absolute;height:400px;width:400px;background:yellow;left:80px;top:80px;">        <div style="position:absolute;height:200px;width:200px;background:red;left:100px;top:80px;"></div>        <div style="position:relative;height:200px;width:200px;background:blue;left:186px;top:186px;"></div>        <div style="position:fixed;height:140px;width:140px;background:black;left:20px;top:20px;"></div>    </div>    <div style="position:static;height:140px;width:140px;background:brown;left:220px;top:220px;"></div></body> </html>

效果截图
这里写图片描述
紫色(brown)的是static的,所以它的left和top没有起作用,一直跑到最上面去了
黑色(black)的是fixed的,所以它直接以浏览器窗口开始计算left和top的值
红色(red)和蓝色(blue)分别是absolute和relative他们都是从父对象开始计算left和top的值,只是因为有一个是absolute所以产生了重叠效果,没有被另外一个挤走。
inherit是继承的意思,也就是使用和上一级父元素同样的width。其他的规则也是如此,inherit就表示继承父元素的值。
同时我也明白了另外一个道理,因为默认的类型都是static,所以当我们的页面长度等定位的不合理时一个会把一个挤走。

0 0
原创粉丝点击