我正在尝试创建一个弹出叠加层,但我无法让蓝色叠加层变得不透明。红色显示通过。
<a href="www.google.com">hi</a>
<div class="dim">
<div class="test">
<div> test </div>
<div> 2nd </div>
</div>
</div>
.dim {
height:100%;
width:100%;
position:fixed;
left:0;
top:0;
background-color:red;
opacity: 0.5;
}
.test {
opacity: 1.0;
border: solid;
display: inline-block;
background-color:blue;
position: fixed;
top: 50%;
left: 50%;
margin-top: -10px;
margin-left: -10px;
}
jsfiddle 链接