blob: ecbc1947e45d0bc693fced9744e287898944274e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!doctype html>
<meta charset="utf-8">
<title>CSS Test Reference</title>
<style>
div {
width: 100px;
height: 100px;
background-image: linear-gradient(purple, yellow);
}
</style>
<div></div>
|