“CSS de gradiente lineal” Código de respuesta

Cómo insertar gradiente en 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

gradiente lineal horizontal CSS

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

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

CSS de gradiente lineal

/* A gradient tilted 45 degrees,
   starting blue and finishing red */
linear-gradient(45deg, blue, red);

/* A gradient going from the bottom right to the top left corner,
   starting blue and finishing red */
linear-gradient(to left top, blue, red);

/* Color stop: A gradient going from the bottom to top,
   starting blue, turning green at 40% of its length,
   and finishing red */
linear-gradient(0deg, blue, green 40%, red);

/* Color hint: A gradient going from the left to right,
   starting red, getting to the midpoint color
   10% of the way across the length of the gradient,
   taking the rest of the 90% of the length to change to blue */
linear-gradient(.25turn, red, 10%, blue);

/* Multi-position color stop: A gradient tilted 45 degrees,
   with a red bottom-left half and a blue top-right half,
   with a hard line where the gradient changes from red to blue */
linear-gradient(45deg, red 0 50%, blue 50% 100%);
Pan Dziad

CSS de gradiente lineal

style="background:linear-gradient(180deg, rgb(234 245 255) 85%, rgb(255 255 255) 85%) ;
Developers

CSS de gradiente lineal

background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/cover.jpg");
Gentle Gorilla

Respuestas similares a “CSS de gradiente lineal”

Preguntas similares a “CSS de gradiente lineal”

Más respuestas relacionadas con “CSS de gradiente lineal” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código