<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>10.relative</title>
<style>
* {
margin: 0;
padding: 0;
}
.relative1 {
position: relative;
background: red;
}
.relative2 {
position: relative;
top: -20px;
left: 20px;
background: greenyellow;
width: 500px;
height: 500px;
}
</style>
</head>
<body>
<div class="relative1">
relative的表現和static同樣,除非你添加了一些額外的屬性
</div>
<div class="relative2">
</div>
</body>
</html>
複製代碼