clip-text-flex.html (580B)
1 <!DOCTYPE html> 2 <title>background-clip:text with display:flex</title> 3 <link rel="help" href="https://drafts.csswg.org/css-backgrounds-4/#valdef-background-clip-text"> 4 <link rel="match" href="clip-text-flex-ref.html"> 5 <link rel="stylesheet" href="/fonts/ahem.css"> 6 <meta name="fuzzy" content="0-10;0-2289"> 7 <style> 8 .clip { 9 font-size: 80px; 10 color: transparent; 11 background-color: green; 12 background-clip: text; 13 } 14 .flex { 15 display: flex; 16 } 17 .inline-flex { 18 display: inline-flex; 19 } 20 </style> 21 <div class="clip flex">flex</div> 22 <div class="clip inline-flex">inline-flex</div>