定位分为四种:静态定位static(默认) 、相对定位(relative)、绝对定位(absolute)、固定定位(fixed).
一:相对定位(relative):参考物是该块定位前的位置
特点:不影响元素本身的特性。
元素不脱离文档流。
相对于原位置进行偏移。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>相对定位</title>
<style>
.box1 {
position: relative;
top: 100px;
left: 100px;
width: 200px;
height: 200px;
background-color: pink;
}
.box2 {
width: 200px;
height: 200px;
background-color: deeppink;
}
</style>
&l