CSS 3 Text Shadow with Outline - HTML CSS CSS Property

HTML CSS examples for CSS Property:text-shadow

Description

CSS 3 Text Shadow with Outline

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">
h1 {<!--   w  ww.  j  a  va2s.c o  m-->
   font-size:100px;
   font-weight:bold;
   text-shadow:2px 2px 0 Chartreuse, -2px -2px 0 yellow, 2px -2px 0 blue,
   -2px 2px 0 pink, 4px 4px 6px OrangeRed;
}
</style> 
 </head> 
 <body> 
  <i> <h1>Lorem</h1> </i>  
 </body>
</html>

Related Tutorials