70 lines
1.3 KiB
HTML
70 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title> css 定位 </title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
}
|
|
|
|
.box {
|
|
width: 200px;
|
|
height: 200px;
|
|
float: left;
|
|
}
|
|
|
|
.box_1 {
|
|
background: red;
|
|
position: relative;
|
|
left: 299px;
|
|
top: 57px;
|
|
z-index: 4;
|
|
}
|
|
|
|
.box_2 {
|
|
background: yellow;
|
|
}
|
|
|
|
.box_3 {
|
|
background: green;
|
|
position: relative;
|
|
left: 40px;
|
|
top: 30px;
|
|
z-index: 4;
|
|
}
|
|
|
|
.box_3_1 {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: black;
|
|
position: absolute;
|
|
left: 10px;
|
|
top: 10px;
|
|
z-index: 9999999999;
|
|
}
|
|
|
|
.box_4 {
|
|
background: blue;
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="box box_1"></div>
|
|
<div class="box box_2"></div>
|
|
<div class="box box_3">
|
|
<div class="box_3_1"></div>
|
|
</div>
|
|
<div class="box box_4"></div>
|
|
|
|
</body>
|
|
|
|
</html> |