blob: 0fa177f8e761ba34968df2bc9ae8e3b79b050a14 (
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: -moz-linear-gradient(top, yellow 0%, blue 100%);
}
</style>
<div></div>
|