Answers for "how to add a gradient in css"

CSS
8

how to insert gradient in css

body{
  /*Radial Gradient*/
  background-image: radial-gradient(#EA52F8 5.66%, #0066FF 94.35%);
  /*Linear Gradient*/
  background-image: linear-gradient(45.34deg, #EA52F8 5.66%, #0066FF 94.35%);
}
Posted by: Guest on December-03-2020
1

how to put background gradient css

.element {
  background: linear-gradient(
  #FF0000 /*Colour 1*/
  #00FFFF /*Colour 2*/
  );
}

/*Linear Gradient (Popular)*/
  
  
.element {
  background: radial-gradient(
  #FF0000 /*Colour 1*/
  #00FFFF /*Colour 2*/
  );
}

/*Radial Gradient*/
Posted by: Guest on August-04-2021
1

how to insert gradient in css

body{
  background-image: linear-gradient(45.34deg, #EA52F8 5.66%, #0066FF 94.35%);
}
Posted by: Guest on December-03-2020
1

linear gradient in CSS

The general syntax of linear-gradient is-
background: linear-gradient(gradient direction, color1 , color2 , color3, .....);

Forexample-
background: linear-gradient(46deg,green,blue,yellow,pink);

NOTE: (common mistake) we forget to write the semi-colon (;)
Posted by: Guest on September-10-2020

Code answers related to "how to add a gradient in css"

Browse Popular Code Answers by Language