社区服务
高级搜索
猴岛论坛社区服务新手测试求助
发帖 回复
倒序阅读 最近浏览的帖子最近浏览的版块
0个回复

[测试发帖]

楼层直达
暴躁老哥 

ZxID:73817013

等级: 元老
桃子贴引用我回复的,死一家子。

举报 只看楼主 使用道具 楼主   发表于: 2018-05-04 0
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        div{
            width:300px;
        }
        .box{height:300px;margin:0 auto;position:relative;}
        .content{height:300px;background-color: blue;position: absolute;left:-5px;top:-5px;z-index:1;}
        .mark{height:300px;background-color: #000;position: absolute;left:5px;top:5px;opacity:0.5;}
        /*
            z-index z轴 提升层级
            opacity 透明度 0完全透明 1完全不透明
        */
    </style>
</head>
<body>
    <div class="box">
        <div class="content"></div>
        <div class="mark"></div>
    </div>
</body>
</html>
[ 此帖被一支穿云箭 在2018-05-04 20:54重新编辑 ]
« 返回列表
发帖 回复