Radial Gradient Mdn Css Code Example
Example 1: radial gradient css
background: radial-gradient(#e66465, #9198e5);Example 2: radial gradient css
.gradient {
  background-image:
    radial-gradient(
      circle,
      yellow,
      #f06d06
    );
}background: radial-gradient(#e66465, #9198e5);.gradient {
  background-image:
    radial-gradient(
      circle,
      yellow,
      #f06d06
    );
}
Comments
Post a Comment