HTML CSS examples for CSS Property:text-shadow
Text-shadow density in css to get a blur effect
<html> <head> <title>Lorem ipsum</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> body {<!--from w w w . j ava2 s .com--> background:Chartreuse; } h1 { font-size:26px; font-family:Arial; color:yellow; text-shadow:3px 3px 0 blue; } </style> </head> <body> <h1>Lorem ipsum dolor sit</h1> </body> </html>