定位:position,当值为relative时可以设置left和right偏移量。
position 属性值的含义:
static
元素框正常生成。块级元素生成一个矩形框,作为文档流的一部分,行内元素则会创建一个或多个行框,置于其父元素中。
relative
元素框偏移某个距离。元素仍保持其未定位前的形状,它原本所占的空间仍保留。
absolute
元素框从文档流完全删除,并相对于其包含块定位。包含块可能是文档中的另一个元素或者是初始包含块。元素原先在正常文档流中所占的空间会关闭,就好像元素原来不存在一样。元素定位后生成一个块级框,而不论原来它在正常流中生成何种类型的框。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>定位</title>
<style type="text/css">
.box1{
width: 100px;
height: 100px;
background-color: gold;
position:relative;
left: 100px;
}
.box2{
width: 100px;
height: 100px;
background-color: yellow;
}
.box3{
width: 100px;
height: 100px;
background-color: green;
position:relative;
left: 100px;
}
.box4{
width: 100px;
height: 100px;
background-color: green;
position:relative;
left: 200px;
}
/*相对定位不会影响文档流*/
</style>
</head>
<body>
<div class="box1"></div>
<div class="box2">
<div class="box4"></div>
</div>
<div class="box3"></div>
</body>
</html>
网友评论