blob: 9a962f27fd2aced43d7c782c976c40a98d3b8aa0 [file] [log] [blame]
<!DOCTYPE html>
<!--
| Simple vertical linear gradient where one color is fully transparent.
-->
<html>
<head>
<style>
body {
background: blue;
}
div {
background: linear-gradient(white, transparent);
width: 200px;
height: 200px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>