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