Radial Gradient in CSS

PHOTO EMBED

Fri Jan 10 2020 19:00:00 GMT+0000 (Coordinated Universal Time)

Saved by @solitaire_4_07 #css #design #gradient #webdev

.gradient {
  background-image:
    radial-gradient(
      yellow,
      #f06d06
    );
}
content_copyCOPY

Line 4 defines the inner colour of the gradient in the center line 5 defines the outmost colour at the edges.

https://css-tricks.com/snippets/css/css-radial-gradient/