“Hintergrundbild linearer Gradient und Randradius” Code-Antworten

Hintergrundbild linearer Gradient und Randradius

.rounded-corners-gradient-borders {
  width: 300px;
  height: 80px;
  border: double 4px transparent;
  border-radius: 80px;
  background-image: linear-gradient(white, white), radial-gradient(circle at top left, #f00,#3020ff);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
Sergiu The Man

linearer Gradienten CSS -Hintergrundbild

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

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

Ähnliche Antworten wie “Hintergrundbild linearer Gradient und Randradius”

Fragen ähnlich wie “Hintergrundbild linearer Gradient und Randradius”

Weitere verwandte Antworten zu “Hintergrundbild linearer Gradient und Randradius” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen