“Gradiente lineal en CSS” Código de respuesta

gradiente lineal horizontal CSS

background: linear-gradient(to left, red, blue);
Friendly Hawk

Gradiente lineal CSS

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

}
rabbit.sol

color de fondo de gradiente horizontal CSS

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

HTML CSS Background-Gradiente lineal

#background {
  background-image: linear-gradient(to left, #4B2C4C , #151F28);
}
Dayanaohhnana

gradiente lineal

background: linear-gradient(to left, #333, #333 50%, #eee 100%);
Xenophobic Xenomorph

Gradiente lineal 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

Respuestas similares a “Gradiente lineal en CSS”

Preguntas similares a “Gradiente lineal en CSS”

Más respuestas relacionadas con “Gradiente lineal en CSS” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código