Advertisement
Felanpro

Text Shadow Advanced

Dec 5th, 2015
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.25 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.  
  6. <title>Testing</title>
  7.  
  8. <style>
  9. #text1 {
  10. color: black;
  11. text-shadow: 1px 2px 20px 2px blue, 0 1px 20px 1px red;
  12. }
  13. </style>
  14.  
  15. </head>
  16.  
  17.  
  18. <body>
  19.  
  20. <h1 id="text1">Text With Shadows!</h1>
  21.  
  22.  
  23. </body>
  24.  
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement