CSS:定位的叠放次序

定位的叠放次序 z-index

在使用定位布局时,可能会出现盒子重叠的情况。此时,可以使用z-index来控制盒子的前后次序(z轴)。

语法:

选择器 {
  z-index: 1;
}
  • 数值可以是正整数、负整数或0,默认是auto。数值越大,盒子越靠上。
  • 如果属性值相同,则按照书写顺序,后来居上。
  • 数字后面不能加单位。
  • 只有定位的盒子才有z-index属性。

示例

三个盒子都没有加定位,是标准流

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    .box {
      /* position: absolute;
      top: 0;
      left: 0; */
      width: 200px;
      height: 200px;
    }

    .laoda {
      background-color: red;
    }

    .laoer {
      background-color: green;
    }

    .laosan {
      background-color: blue;
    }
  </style>
</head>

<body>
  <div class="box laoda">老大</div>
  <div class="box laoer">老二</div>
  <div class="box laosan">老三</div>
</body>

</html>

在这里插入图片描述

三个盒子都是绝度定位,没有加z-index

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    .box {
      position: absolute;
      top: 0;
      left: 0;
      width: 200px;
      height: 200px;
    }

    .laoda {
      background-color: red;
    }

    .laoer {
      background-color: green;
    }

    .laosan {
      background-color: blue;
    }
  </style>
</head>

<body>
  <div class="box laoda">老大</div>
  <div class="box laoer">老二</div>
  <div class="box laosan">老三</div>
</body>

</html>

在这里插入图片描述

三个盒子都是绝度定位,给其中一个盒子加上z-index: 1;

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    .box {
      position: absolute;
      top: 0;
      left: 0;
      width: 200px;
      height: 200px;
    }

    .laoda {
      background-color: red;
      z-index: 1;
    }

    .laoer {
      background-color: green;
      left: 50px;
      top: 50px;
    }

    .laosan {
      background-color: blue;
      top: 100px;
      left: 100px
    }
  </style>
</head>

<body>
  <div class="box laoda">老大</div>
  <div class="box laoer">老二</div>
  <div class="box laosan">老三</div>
</body>

</html>

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值