blob: 8860679bf22c2579dbeda9b3bb18dca6747a5dc7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!doctype html>
<!-- Derived from http://a-ja.net/newgrad.html -->
<style>
div {
height: 200px;
width: 100px;
background: linear-gradient(to bottom, yellow, blue);
}
</style>
<div></div>
|