We would like to know how to create blurry Text with Shadow.
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.blur {<!-- www.j a v a2 s . com-->
text-shadow: 0px 0px 8px rgba(15, 15, 15, .6);
}
.dramatic {
text-shadow: 9px 9px 8px rgba(15, 15, 15, .6);
}
</style>
</head>
<body>
<h1 class="blur">This is blurry!</h1>
<h1 class="dramatic">This is blurry too!</h1>
</body>
</html>
The code above is rendered as follows: