target-text-shadow-vertical-ref.html (591B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>CSS Pseudo-Elements Test: Shadows on vertical 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 writing-mode: vertical-lr; 9 } 10 p { 11 font-size: 2em; 12 color: black; 13 text-shadow: 0.1em 0.1em 3px rgba(0,0,0,0.5); 14 } 15 span { 16 color: green; 17 text-shadow: 0.25em 0.25em 3px rgba(0,0,128,0.5), 0.1em 0.1em 3px rgba(0,0,0,0.5); 18 } 19 </style> 20 <p>the <span>target</span> should have a shadow</p>