blob: 290c75a939a15d84613a2eef81dd5212a29ee894 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 50px;
height: 200px;
background-image: -webkit-linear-gradient(top, red, blue);
}
</style>
</head>
<body>
<div></div>
</body>
</html>
|