Text-shadow usage - HTML CSS CSS Property

HTML CSS examples for CSS Property:text-shadow

Description

Text-shadow usage

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
#np {<!--  w ww.  j a v  a  2 s  .c  o m-->
   text-shadow:-13px 3px 3px hsl(121,71%,51%),
   3px 13px 3px hsl(121,31%,21%),
   -3px 3px 13px  hsl(121,100%,51%);
}
</style> 
 </head> 
 <body> 
  <p id="np">Lorem ipsum dolor si</p>  
 </body>
</html>

Related Tutorials