Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<link rel="match" href="clip-text-out-of-flow-child-ref.html">
<link rel="stylesheet" href="/fonts/ahem.css">
<style>
.box {
font: 10px/1 Ahem;
width: 100px;
height: 100px;
background-color: aqua;
color: transparent;
background-clip: text;
position: relative;
&::before {
width: 100px;
height: 100px;
background-color: blueviolet;
content: '_';
position: absolute;
z-index: -1;
}
}
</style>
<div class="box">XXX</div>