cssrelative

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.one{
150px;
height: 150px;
border: 2px solid pink;
background-color: #FF6666;
position: relative;
top:15px;
left:15px;

}
.two{
150px;
height: 150px;
border: 2px solid pink;
background-color: pink;
position: relative;
top:15px;
left:30px;

}
.three{
150px;
height: 150px;
border: 2px solid pink;
background-color: #FF6666;
position: relative;
top:15px;
left:300px;

}

</style>
</head>
<body>

</body>
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
<!--<div class="four"></div>-->
</html>

原文地址:https://www.cnblogs.com/xiou/p/9692388.html