gradient-move-stops.html (542B)
1 <!doctype html> 2 <html> 3 4 <head> 5 <meta charset="utf-8"> 6 <title>Linear gradient which needs some positions changed and inferred.</title> 7 <link rel="help" href="https://drafts.csswg.org/css-images-3/#radial-color-stops"> 8 <link rel="match" href="gradient-move-stops-ref.html"> 9 <style> 10 #gradient { 11 width: 400px; 12 height: 300px; 13 background-image: linear-gradient(to right, yellow, blue 70%, green 0); 14 } 15 </style> 16 </head> 17 18 <body> 19 <div id="gradient"></div> 20 </body> 21 22 </html>