“Comment insérer le gradient dans CSS” Réponses codées

Comment insérer le gradient dans 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%);
}
Cooperative Cod

Gradient linéaire CSS

#grad {
  background-image: linear-gradient(to right, #f1b1b1 , #82e6e8);

}
rabbit.sol

CSS Horizontal Gradient d'arrière-plan couleur

.foo {
	background-image: linear-gradient(red, blue);
}
Helpless Horse

Gradient CSS Fteal

/*From bottom to top*/
background: rgb(166,166,166);
background: linear-gradient(0deg, rgba(166,166,166,1) 0%, rgba(255,255,255,1) 29%);
GutoTrosla

Comment insérer le gradient dans CSS

body{
  background-image: linear-gradient(45.34deg, #EA52F8 5.66%, #0066FF 94.35%);
}
Cooperative Cod

Gradient linéaire en 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 (;) 
FIRE IN CODING

Réponses similaires à “Comment insérer le gradient dans CSS”

Questions similaires à “Comment insérer le gradient dans CSS”

Plus de réponses similaires à “Comment insérer le gradient dans CSS” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code