我在为 .div1 获得正确的不透明度时遇到了一些问题。我只能使它的不透明度低于 .container 或相同的值,但我希望它更高,我想让它达到 1 而不是 0.92。谁能帮我弄清楚如何将 .div1 设置为不透明度 lvl 1?
html:
<div class="container">
<div class="div1">sth1</div>
<div class="div2">sth2</div>
</div>
CSS:
.container {
position: fixed;
width: 100%;
height: 100%;
background-color:black;
opacity: 0.92;
}
.div1 {
background-color: white;
padding-top: 50px;
padding-bottom: 50px;
width: 100%;
opacity: 1.0;
}