首页 > 代码库 > position
position
position我称它为三部曲
一部曲;position;顾名思义就是定位它呢有5个属性值
值 | 描述 |
Absolute | 生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。 |
fixed | 生成绝对定位的元素,相对于浏览器窗口进行定位。 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。 |
relative | 生成相对定位的元素,相对于其正常位置进行定位。 因此,"left:20px" 会向元素的 LEFT 位置添加 20 像素。 |
Static | 默认值。没有定位,元素出现在正常的流中(忽略 top, bottom, left, right 或者 z-index 声明)。 |
Inherit | 继承父元素 |
二部曲;说下postion的用法absolute是相对于有相对定位的父元素定位,如果没有它会逐级查找直达body,下面的盒子是最上面的。它呢是会脱离文档流的!
fixed是绝对定位生成相对于窗口定位;
三部曲;是定位的层级关系关键属性 z-index ;
z-index;这个属性只能在 postion属性下使用默认是 0 或 auto 参数可以是正整数 和负整数 0!
元素的z-index的值越大它的层级就越高 下面我拿案例来说明
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<style type="text/css">
/*首先干掉默认值*/
*{
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
}
/*再给每个盒子宽高 边框 和绝对定位*/
div{
width: 200px;
height: 200px;
border: 1px solid red;
position: absolute;
}
/*然后给每个盒子不同的背景颜色 和 left top 的值我用的是css3的伪类选择器*/
div:nth-of-type(1){
background: blue;
z-index: 200;
}
div:nth-of-type(2){
background: green;
left: 22px;
z-index: 10;
}
div:nth-of-type(3){
top: 22px;
background: red;
z-index: -200;
}
</style>
<body>
<div></div>
<!--
作者:1693405836@qq.com
时间:2016-09-07
描述:首先写出三个盒子然后全给position
-->
<div></div>
<div></div>
</body>
</html>
position