clip-text-text-decorations-ref.html (409B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <style> 4 .test { 5 line-height: 2em; 6 font-size: 40px; 7 color: green; 8 text-decoration-thickness: 20px; 9 } 10 </style> 11 <body> 12 <div class="test" style="text-decoration: underline">AAAA</div> 13 <div class="test" style="text-decoration: line-through">AAAA</div> 14 <div class="test" style="text-decoration: overline">AAAA</div> 15 </body>