Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="utf-8">
<title>background-clip: text shows text decorations</title>
<link rel="match" href="clip-text-text-decorations-ref.html">
<style>
.test {
line-height: 2em;
font-size: 40px;
color: transparent;
background-color: green;
background-clip: text;
text-decoration-thickness: 20px;
}
</style>
<body>
<div class="test" style="text-decoration: underline">AAAA</div>
<div class="test" style="text-decoration: line-through">AAAA</div>
<div class="test" style="text-decoration: overline">AAAA</div>
</body>