“Gradiente lineal y URL CSS” Código de respuesta

URL de gradiente lineal de imagen de fondo

  body {
    background-image: url("http://www.skrenta.com/images/stackoverflow.jpg"), linear-gradient(red, yellow);
    background-image: url("http://www.skrenta.com/images/stackoverflow.jpg"), -webkit-gradient(linear, left top, left bottom, from(red), to(yellow));
    background-image: url("http://www.skrenta.com/images/stackoverflow.jpg"), -moz-linear-gradient(top, red, yellow);
  }
Busy Butterfly

Gradiente lineal y URL CSS

body {
  background: url('http://www.skrenta.com/images/stackoverflow.jpg') no-repeat, -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 1)));
}
 Run code snippet
Strange Shark

Respuestas similares a “Gradiente lineal y URL CSS”

Preguntas similares a “Gradiente lineal y URL CSS”

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

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código