In my new project, I want to use mix-blend-mode: difference
for my logo (top center) but it is not working.
In CSS, I used this:
.sitetitle-txt-inner span {
mix-blend-mode: difference;
}
Where is the problem?
In my new project, I want to use mix-blend-mode: difference
for my logo (top center) but it is not working.
In CSS, I used this:
.sitetitle-txt-inner span {
mix-blend-mode: difference;
}
Where is the problem?
Your parent
.sitetitle-txt-inner
is empty and transparent.Try adding different background colors for the
<div>
and<span>
and you'll see blending is working.Result of red and blue: