“Gradiente lineal CSS” Código de respuesta

CSS de imagen de gradiente

#show_bg_2 {
 
background-image:
  /*two color gradient over an image*/
linear-gradient(to bottom, rgba(245, 246, 252, 0.52), 
rgba(117, 19, 93, 0.73)),url('images/background.jpg');
 
width: 80%;
height: 400px;
background-size: cover;
}
webdevjaz

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

Imagen de fondo CSS de gradiente lineal

background-image: url("IMAGE_URL"), linear-gradient(#eb01a5, #d13531);
abdullah

color de fondo de gradiente horizontal CSS

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

Gradiente lineal CSS

#gradient {
  background-image: linear-gradient(180deg, black, red);
}
/* can be applied in many places, as your <body> background or a <div> etc */ 
AndoTheGreat

Respuestas similares a “Gradiente lineal CSS”

Preguntas similares a “Gradiente lineal CSS”

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

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código