css相对定位不占用空间
更新:HHH   时间:2023-1-7


  1. 要点:

  2. 代码:
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        div{
            position: relative;
        }
        p{
            width: 50px;
            height: 50px;
            background: red;
            opacity: 0.5;
            position: absolute;
            z-index: 999;
            top: 0;
            left: 0;
        }
    </style>
    </head>
    <body>
    <h4>外部元素</h4>
    <h4>外部元素</h4>
    <h4>外部元素</h4>
    <div>
        <h4>内部元素</h4>
        <h4>内部元素</h4>
        <h4>内部元素</h4>
        <p></p>
    </div>
    </body>
    </html>
  3. 效果:
返回web开发教程...