blob: e444ee1e0484a3fdc3c35f4ca300d1d114c671d3 [file] [log] [blame]
<!DOCTYPE html>
<!--
| Multiple layers of overlapping shadows.
| https://www.w3.org/TR/2013/CR-css-text-decor-3-20130801/#text-shadow-property
-->
<html>
<head>
<style>
body {
font-family: roboto;
font-size: 80px;
}
div {
position: absolute;
left: 20px;
top: 20px;
text-shadow: 5px 5px red, 10px 10px blue, 15px 15px green;
}
</style>
</head>
<body>
<div>Hello there</div>
</body>
</html>