blob: 7e79154bbcbd0f382d653539deaa84a4daad4308 [file] [log] [blame]
<style>
section {
height: 200px;
width: 300px;
position: relative;
}
p {
padding: 0;
margin: 0;
}
.filtered {
position: absolute;
left: 150px;
top: 0;
width: 150px;
background: white;
-webkit-filter: invert();
}
</style>
<section>
<p class="break-after">Hello</p>
<p class="filtered">World</p>
</section>