<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>定位</title>
<style>
*{
margin: 0; /* 外边距 */
padding: 0; /* 内边距 */
}
/* 定位: 定位模式+边偏移
定位模式:
1.相对定位relative:相对自己原先的位置进行偏移
2.绝对定位absolute:参照有定位的父盒子进行偏移,如果父盒子都没有定位,最终参照body
注意:绝对定位的盒子会脱离标准流(脱标!!!)
大相小绝/子绝父相。
3.固定定位fixed
*/
.box{
/* position: relative;
top: 100px;
left: 200px; */
width: 400px;
height: 400px;
background-color: pink;
}
.bigbox{
position: absolute;
width: 800px;
height: 800px;
background-color: pink;
}
.bigbox .sbox{
position: absolute; /* 绝对定位 */
right: 100px;
border: 200px;
width: 200px;
height: 200px;
background-color: skyblue;
}
.box3{
position: fixed;
top: 200px;
left: 180px;
width: 1000px;
height: 300px;
background-color: aqua;
}
</style>
</head>
<body>
<!-- <div class="box"></div> -->
<div class="bigbox">
<div class="sbox"></div>
</div>
<div class="box3"></div>
</body>
</html>