<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>相对定位</title>
<style type="text/css">
div {
width: 300px;
height: 300px;
}
.one {
/* 静态定位 普通文档流的形式 */
position: static;
background-color: red;
}
.two {
/* 相对定位,相对于自身原来的位置。原来的框还在文档流里面占有空间。 */
position: relative;
top: 20px;
left: 50px;
background-color: green;
}
.three {
background-color: blue;
}
</style>
</head>
<body>
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</body>
</html>