CSS中z-index元素的层级

定位position的可选值有:

        *        static,默认值,元素是静止的,不开启定位

        *        relative, 开启元素的相对定位

       *         absolute, 开启元素的决定定位

        *        fixed ,开启元素的固定定位

        *        sticky ,开启元素的粘滞定位

对于开启了定位的元素,可以通过z-index来指定元素的层级,

z-index 接收一个整数作为参数,值越大,元素的层级越高,层级越高越优先显示

如果元素的层级一样,则优先显示靠下的元素

祖先元素的层级再高,也不会盖过后代元素

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>元素的层级</title>
		<style type="text/css">
			body{
				font-size: 50px;
			}
			.box1{
				width: 200px;
				height: 200px;
				background-color: green;
				position: absolute;
				z-index: 1;
			}
			.box2{
				width: 200px;
				height: 200px;
				background-color: red;
				position: absolute;
				top: 50px;
				left: 50px;
				z-index: 2;
			}
			.box3{
				width: 200px;
				height: 200px;
				background-color: yellow;
				position: absolute;
				top: 90px;
				left: 90px;
				z-index: 3;
			}
		</style>
	</head>
	<body>
		<div class="box1">1</div>
		<div class="box2">2</div>
		<div class="box3">3</div>
	</body>
</html>

代码运行结果如下:

 

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值