HTML CSS examples for CSS Property:text-shadow
CSS 3 Text Shadow with Outline
<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>