CSS定位(static、relative、absolute、fixed)

1.static定位

在这里插入图片描述

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
			*{
				margin: 0;
				padding: 0;
			}
			.wrapper{
				width: 600px;
				height: 600px;
				background-color: antiquewhite;
				border: 20px blueviolet solid;
				box-sizing:  content-box;
			}
			.a, .b, .c{
				width: 150px;
				height: 150px;
				font-size: 24px;
			}
			
			.a{
				background-color: aqua;
			}
			.b{
				background-color: #1515ff;
			}
			.c{
				background-color: #ff5715;
			}
		</style>
	</head>
	<body>
		<div class="wrapper">
			<div class="a">A</div>
			<div class="b">B</div>
			<div class="c">C</div>
		</div>
	</body>
</html>

2.relative定位

在这里插入图片描述


<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
			.wrapper{
				width: 600px;
				height: 600px;
				background-color: antiquewhite;
				border: 20px blueviolet solid;
				box-sizing:  content-box;
			}
			.a, .b, .c{
				width: 150px;
				height: 150px;
				font-size: 24px;
			}
			/* 实现水平+垂直居中 */
			.a{
				background-color: aqua;
				position: relative;			/*相对定位*/
				top: 50%;					/* top偏移父容器的50% */
				left: 50%;					/* left偏移父容器的50% */
				margin-top: -75px;			/* 上外边距 -半个高度 */
				margin-left: -75px;			/* 左外边距 -半个宽度 */
			}
			.b{
				background-color: #1515ff;
			}
			.c{
				background-color: #ff5715;
			}
		</style>
	</head>
	<body>
		<div class="wrapper">
			<div class="a">A</div>
			<div class="b">B</div>
			<div class="c">C</div>
		</div>
	</body>
</html>

3.absolute定位

在这里插入图片描述

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
			*{
				margin: 0;
				padding: 0;
			}
			.wrapper{
				width: 600px;
				height: 600px;
				background-color: antiquewhite;
				border: 20px blueviolet solid;
				box-sizing:  content-box;
				position: relative;    /* 将abc的父元素定位*/
			}
			.a, .b, .c{
				width: 150px;
				height: 150px;
				font-size: 24px;
			}
			
			.a{
				background-color: aqua;
				position: absolute;    /* 实现水平+垂直居中 */
				top: 0;				/* top、left、right、botton都是0 */
				left: 0;
				right: 0;
				bottom: 0;
				margin: auto;    /*居中的关键 */
			}
			.b{
				background-color: #1515ff;
			}
			.c{
				background-color: #ff5715;
			}
		</style>
	</head>
	<body>
		<div class="wrapper">
			<div class="a">A</div>
			<div class="b">B</div>
			<div class="c">C</div>
		</div>
	</body>
</html>

4.fixed定位

在这里插入图片描述

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
			.wrapper{
				width: 600px;
				height: 600px;
				background-color: antiquewhite;
				border: 20px blueviolet solid;
				box-sizing:  content-box;
			}
			.a, .b, .c{
				width: 150px;
				height: 150px;
				font-size: 24px;
			}
			
			.a{
				background-color: aqua;
				position: fixed;   /* 相对于浏览器窗口进行定位。 */
				right: 0;
				top:50%;
				margin-top: -75px;
			}
			.b{
				background-color: #1515ff;
			}
			.c{
				background-color: #ff5715;
			}
		</style>
	</head>
	<body>
		<div class="wrapper">
			<div class="a">A</div>
			<div class="b">B</div>
			<div class="c">C</div>
		</div>
	</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值