[csswg-drafts] [css-images-4] minor error in Conic Gradients example (#3355)

faceless2 has just created a new issue for https://github.com/w3c/csswg-drafts:

== [css-images-4] minor error in Conic Gradients example ==
The image in example 17 doesn't match the CSS used to create it. 

* the order of colors in the conic gradient is reversed
* the radial gradient will not be transparent at the edge of the circle; the radius is based on the diagonal of the box, so it's about 106px, not 75px.

To match the image, change the background property in the CSS to:
```
background: radial-gradient(gray, transparent 70.7%),
            conic-gradient(red, magenta, blue, aqua, lime, yellow, red);
```

Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/3355 using your GitHub account

Received on Thursday, 29 November 2018 16:06:37 UTC