Mam dwa div'y pierwszy ma ustawione opacity:0.89 a drugi opacity:1 jednak ten drugi mimo opacity:1 jest nadal przeźroczysty, jak zrobić żeby drugi nie był przeźroczysty?
.help-content {
display : none;
position : absolute;
z-index : 1000;
top : 0;
bottom : 0;
left : 0;
right : 0;
background-color : #484846;
opacity : 0.89999997615814208984375;
margin : 0 auto;
clear : both;
}
.help-menu{
z-index: 1002;
float: left;
width: 1170px;
height: 163px;
margin-top: 270px;
margin-bottom: 30px;
background-color: #484846;
opacity : 1;
background-position: center center;
background-repeat: no-repeat;
margin: 0 auto;
}
<div class="help-content">
<div class="help-menu"></div>
</div>