text-shadow-emoji-transparent-ref.html (534B)
1 <!DOCTYPE html> 2 <head> 3 <meta charset="utf-8"> 4 <link rel="author" title="Vitor Roriz" href="https://github.com/vitorroriz"> 5 <link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-shadow-property"> 6 <style> 7 .test { 8 font-size: 100px; 9 text-shadow: 300px 300px 0 green; 10 } 11 .hide-text { 12 background-color: white; 13 position: absolute; 14 width: 300px; 15 height: 200px; 16 z-index: 1; 17 left: 0; 18 } 19 </style> 20 </head> 21 <body> 22 <span class="test">A👍B</span> 23 <span class="hide-text"></span> 24 </body>