26 lines
No EOL
435 B
HTML
26 lines
No EOL
435 B
HTML
<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> |