blob: ab11cc9710c8bf47633c8aec1936fabb337718fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<style>
body,
html {
background-color: white;
}
.wrapper {
mix-blend-mode: difference;
}
.text {
color: white;
}
</style>
<div class="wrapper">
<div class="text">This text should always be black
</div>
</div>
<div id="video">
<div>Hover here to make video disappear</div>
<iframe srcdoc="<div style='width: 100px; height: 100px; background: blue;'></div>">
</div>
|