blob: fac44fb81eedbd024803ee9e715868f561cacc5a [file] [log] [blame]
<!DOCTYPE html>
<!--
| Vertical linear gradient with three color stops.
-->
<html>
<head>
<style>
div {
background: linear-gradient(yellow, blue 20%, rgb(0, 255, 0));
width: 200px;
height: 200px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>