blob: 84ed9291202dd3e3ea8c5b64cb00068356242b70 (
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 right, yellow, blue);
}
</style>
<div></div>
|