Getting shadow text - HTML CSS CSS Property

HTML CSS examples for CSS Property:text-shadow

Description

Getting shadow text

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">
.title {<!-- w  w  w .ja v a2  s.  c  o  m-->
   position:absolute;
   bg-color:Chartreuse;
   z-index:11;
   width:100%;
   height:100%;
   font-size:251%;
   color:yellow;
   text-shadow:3px 3px 4px blue;
   Filter:DropShadow(Color=pink, OffX=3, OffY=3, Positive=2);
   zoom:2
}
</style> 
 </head> 
 <body> 
  <div class="title">
    Lorem ipsum 
  </div>  
 </body>
</html>

Related Tutorials