“Gradiente linear e URL CSS” Respostas de código

URL de gradiente linear de base e imagem

  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 linear e 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

Respostas semelhantes a “Gradiente linear e URL CSS”

Perguntas semelhantes a “Gradiente linear e URL CSS”

Mais respostas relacionadas para “Gradiente linear e URL CSS” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código