<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
/*绝对定位的盒子参考点:就近原则,任何定位都可以作为参考*/
* {
margin: 0;
padding: 0;
}
.box1 {
width: 400px;
height: 400px;
padding: 100px;
border: 10px solid red;
margin: 100px;
position: absolute;
}
.box2 {
width: 300px;
height: 300px;
border: 50px solid blue;
position: absolute;
}
p {
width: 100px;
height: 100px;
background-color: orange;
position: absolute;
top: 60px;
left: 60px;
}
</style>
</head>
<body>
<div class="box1">
<div class="box2">
<p></p>
</div>
</div>
</body>
</html>