I want apply opacity for parent but default child element inherited from parent. I don't want apply opacity for child. please help me.
<div class="parent">
<div class="child"></div>
</div>
.parent {
opacity: 0.6;
}
|
|
|
The opacity of the child will always be the opacity of the parent if the opacity of the child is 1. This is not a problem with inheritance, but rather with the way opacity is calculated. For instance,
The only way to avoid this is to move the child out of the parent. Alternatively, depending on what you want here, you can also use |
|||||
|