美文网首页
z-index属性

z-index属性

作者: 三人行大道 | 来源:发表于2019-05-21 21:08 被阅读0次

number z-index:3; 按照z-index的大小排序

因为Z-index只能工作在被明确定义了absolute,fixed或relative 这三个定位属性的元素中

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style type="text/css">
        .blue,.green,.red{
            width:200px;
            height:200px;
            position:relative;
        }
        .blue{
            background:blue;
            z-index:3;
        }
        .green{
            background:green;
            margin-top:-100px;
            margin-left:50px;
            z-index:2;
        }
        .red{
            background:red;
            margin-top:-100px;
            margin-left:100px;
            z-index:1;
        }
    </style>
</head>
<body>
    <div class="blue"></div>
    <div class="green"></div>
    <div class="red"></div>
</body>
</html>

相关文章

网友评论

      本文标题:z-index属性

      本文链接:https://www.haomeiwen.com/subject/hpeszqtx.html