x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
div {
5
  background-image: url(/pix/samples/22l.jpg);
6
  background-size: cover;
7
  background-repeat: no-repeat;
8
  font-family: georgia, serif;
9
  font-size: 7vw;
10
  text-align: center;
11
  border: solid;
12
}
13
.blender {
14
  mix-blend-mode: difference;
15
  color: orange;
16
}
17
</style>
18
19
<div>
20
  <h2 class="blender">"Meow" means "woof" in cat.</h2>
21
</div>