blob: e06fe1e2e8f6d784015c128c8514a724bda780c4 [file] [log] [blame]
<!DOCTYPE html>
<!--
| Red text shadow.
| 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: 3px 3px red;
}
</style>
</head>
<body>
<div>Hello there</div>
</body>
</html>