target-text-shadow-horizontal-ref.html (558B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>CSS Pseudo-Elements Test: Shadows on horizontal target text - reference</title> 4 <link rel="author" name="Stephen Chenney" href="mailto:schenney@igalia.com"> 5 <style> 6 :root { 7 line-height: 1; 8 } 9 p { 10 font-size: 2em; 11 color: black; 12 text-shadow: 0.1em 0.1em 3px rgba(0,0,0,0.5); 13 } 14 span { 15 color: green; 16 text-shadow: 0.25em 0.25em 3px rgba(0,0,128,0.5), 0.1em 0.1em 3px rgba(0,0,0,0.5); 17 } 18 </style> 19 <p>the <span>target</span> should have a shadow</p>