How can I set mix-blend-mode on an element, but not it's children? Setting the children to the default value of normal
does not seem to work:
The solution on how to avoid mix-blend-mode
affects children:
mix-blend-mode
to it;inner
element inside the child for your content. Make it's position absolute, and put it on top of other elements;html
<div class="bkdg">
<div class="blend">
<div class="inner">
<h1>Header</h1>
</div>
</div>
</div>
css
.blend {
position: relative; /* Make position relative */
width: 100%;
height: 100%;
}
.blend::before { /* Apply blend mode to this pseudo element */
content: '';
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
z-index: 1;
background-color: green;
mix-blend-mode: multiply;
}
.inner { /* This is our content, must have absolute position */
position: absolute;
z-index: 2;
}
h1 {
color: white;
}