Text-shadow density in css to get a blur effect - HTML CSS CSS Property

HTML CSS examples for CSS Property:text-shadow

Description

Text-shadow density in css to get a blur effect

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <title>Lorem ipsum</title> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
body {<!--from w  w  w .  j ava2  s .com-->
   background:Chartreuse;
}

h1 {
   font-size:26px;
   font-family:Arial;
   color:yellow;
   text-shadow:3px 3px 0 blue;
}
</style> 
 </head> 
 <body> 
  <h1>Lorem ipsum dolor sit</h1>  
 </body>
</html>

Related Tutorials