“linearer Gradient und URL -CSS” Code-Antworten

Hintergrund-Image Linear-Gradient-URL

  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

linearer Gradient und 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

Ähnliche Antworten wie “linearer Gradient und URL -CSS”

Fragen ähnlich wie “linearer Gradient und URL -CSS”

Weitere verwandte Antworten zu “linearer Gradient und URL -CSS” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen