position:一种更加高级的布局属性;
可选值:
- static:默认值
- relative:相对定位
- absolute:绝对定位
- fixed:固定定位
- sticky:粘滞定位
偏移量(offset):top,bottom,left,right
relative会提高元素的层级;不会使元素脱离文档流;不会改变元素的性质;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>relative</title>
<style>
/*
position:一种更加高级的布局属性;
可选值:
static:默认值
relative:相对定位
absolute:绝对定位
fixed:固定定位
sticky:粘滞定位
偏移量(offset):top,bottom,left,right
relative会提高元素的层级;不会使元素脱离文档流;不会改变元素的性质;
*/
body{font-size: 60px;}
.box1{
width: 200px;
height: 200px;
background-color: yellow;
}
.box2{
width: 200px;
height: 200px;
background-color: pink;
position: relative;
top: -200px;
left: 200px;
}
.box3{
width: 200px;
height: 200px;
background-color: skyblue;
}
</style>
</head>
<body>
<div class="box1">1</div>
<div class="box2">2</div>
<div class="box3">3</div>
</body>
</html>
网友评论