blob: 3ddf10196c5f4723d3189696381278568b9625ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<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="<style>
html, body {
background: white;
}
</style>
<div style='width: 100px; height: 100px; background: blue;'></div>">
</div>
|