Saturday 20 October 2012

Make a Shadow effect in Your text using CSS3

Shadow Effect in Text Using CSS3 Style Code..

This is simple text transformation code using CSS3 to give a shadowy effect to any text.......
Code can be used in making effective headings in any webpage to make it effective & self appealing, just copy and paste the code to your page to produce the effect...

  1.   <html>
  2.   <head>
  3.     <style>
  4.       #demo {
  5.         font-weight: normal;
  6.         background-color: #FFFFFF;
  7.         color: #666789;
  8.         font-size: 64px;
  9.         line-height: 140%;
  10.         text-shadow: 5px 5px 5px #333333;
  11.         column-count:2;
  12.         column-width:10px;
  13.         column-gap:0px
  14.       }
  15.     </style>
  16.   
  17.   
  18.   </head>
  19.   <body>
  20.     <p id="demo">Ashwin Semwal @$#baba</h2>
  21.   </body>
  22. </html>


Note: Change the above "Text-shadow:" value to reduce or increase the effect, last value represents the color of shadow..... ; ) enjoy
\

Output:----



No comments:

Post a Comment