blob: e705f1c16a921abfd9bf427a8e7122ee5e5cc2ac [file] [log] [blame]
<!DOCTYPE html>
<!--
| Red text shadow with a very large blur.
| https://www.w3.org/TR/2013/CR-css-text-decor-3-20130801/#text-shadow-property
-->
<html>
<head>
<style>
body {
font-family: roboto;
font-size: 30px;
}
div {
text-shadow: 5px 5px 60px red;
}
</style>
</head>
<body>
<div>Hello there</div>
</body>
</html>