blob: 3b11fca9d97ce00622efb2571ac992835cd1f1f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE html>
<html>
<head>
<title>Color stop positioning for scaled gradients as backgrounds</title>
<style type="text/css">
#outer
{
border: 1px solid black;
width: 600px; height: 300px;
/* 250px stop is halfway along 500px diagonal */
background-image: -moz-linear-gradient(top left, lime 0%, teal 250px, black 100%);
background-image: linear-gradient(top left, lime 0%, teal 250px, black 100%);
background-size: 400px auto;
background-repeat: no-repeat;
}
</style>
</head>
<body>
<div id="outer"></div>
</body>
</html>
|