clip-text-on-body-propagated-to-root.html (424B)
1 <!DOCTYPE html> 2 <title>background-clip:text on the root</title> 3 <link rel="help" href="https://drafts.csswg.org/css-backgrounds-4/#valdef-background-clip-text"> 4 <link rel="match" href="../reference/green-root-background.html"> 5 <style> 6 html { 7 font-size: 80px; 8 color: transparent; 9 background-color: green; 10 } 11 body { 12 background-clip: text; 13 } 14 </style> 15 16 This text should not be visible; the page should be entirely green.