conic-gradient-center.html (595B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>Conic gradient with custom center parameter</title> 4 <link rel="help" href="https://drafts.csswg.org/css-images-4/#conic-gradients"> 5 <meta name="assert" content="Rendering of conic-gradient with custom center parameter"> 6 <meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-40000"> 7 <link rel="match" href="conic-gradient-center-ref.html"> 8 <style> 9 #gradient { 10 width: 200px; 11 height: 200px; 12 background-image: conic-gradient(at 25% 25%, red 0 25%, green 25% 50%, blue 50% 75%, black 75% 100%); 13 } 14 </style> 15 <div id="gradient"></div>