python/Day21-30/code/new/web1901/example_of_css_4.html
2024-12-04 00:04:56 +08:00

38 lines
607 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS - 定位</title>
<style type="text/css">
.one {
background-color: red;
left: 50px;
top: 50px;
z-index: 100;
}
.two {
background-color: green;
left: 100px;
top: 100px;
z-index: 20;
}
.three {
background-color: blue;
left: 150px;
top: 150px;
z-index: 10;
}
.one, .two, .three {
position: absolute;
width: 200px;
height: 200px;
}
</style>
</head>
<body>
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</body>
</html>