CSS z-index应用靠近用户的框

  1.z-index

    (1)z轴。数值越大,越靠近你

    (2)只能作用于定位过的标签元素

    

 

  应用示例

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>05丐版模特框</title>

    <style>
        .cover {
            position: absolute; /* 绝对定位 */
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .modal {
            width: 600px;
            height: 400px;
            background-color: white;
            position: fixed;
            top: 50%;   /* 据上百分之50 */
            left: 50%;  /* 据下百分之50 */
            margin-top: -200px;     /* 在向上挪动自己高一半的位置 */
            margin-left: -300px;    /* 在向左挪动自己宽一半的位置 */
            z-index: 1000; /* 要靠近你,比下面那层要靠近用户 */
        }

    </style>

</head>
<body>

<div class="modal"></div>

<div class="cover"></div>



</body>
</html>

 

posted @ 2019-02-12 11:08  _小溢  阅读(268)  评论(0编辑  收藏  举报