blob: 51f70bcd46defbd42ccbed7b6eb0c44292d9f8b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE HTML>
<title>Test for linear-gradient() with all stops at the same position</title>
<style>
#div1 {
float: left;
width: 50px;
height: 200px;
background: blue;
}
#div2 {
float: left;
width: 150px;
height: 200px;
background: orange;
}
</style>
<div id="div1"></div>
<div id="div2"></div>
|