blob: f73786b262f2a797298f470c16199984577b222b [file] [log] [blame]
<!DOCTYPE html>
<!--
| Blurred text shadow with 0 offset.
| 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: 0px 0px 5px red;
}
</style>
</head>
<body>
<div>Hello there</div>
</body>
</html>