text-shadow-on-selection-1-ref.html (329B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style type="text/css"> 5 body { 6 background: white; 7 color: black; 8 font-size: 24px; 9 } 10 div { 11 background: white; 12 color: blue; 13 text-shadow: red 2px 2px 0px; 14 } 15 span { 16 background: yellow; 17 color: white; 18 } 19 </style> 20 </head> 21 <body> 22 <div> 23 hello <span>selected</span> world 24 </div> 25 </body> 26 </html>