定位HTML

<!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>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值