gradient-move-stops-ref.html (329B)
1 <!doctype html> 2 <html> 3 4 <head> 5 <meta charset="utf-8"> 6 <style> 7 #gradient { 8 width: 400px; 9 height: 300px; 10 background-image: linear-gradient(to right, yellow 0%, blue 70%, green 70%, green 100%); 11 } 12 </style> 13 </head> 14 15 <body> 16 <div id="gradient"></div> 17 </body> 18 19 </html>