“CSS -Hintergrund Vollbildschirm” Code-Antworten

Hintergrundbild CSS Füllbildschirm

.Background {
  background-image: url("Your picture name.jpg");
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
  background-size: cover;
}
Marco

So bedecken Sie das vollständige Bild in CSS

body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
abdullah

CSS Full Cover Hintergrundbild

body { 
  background: url(path/to/bg-image.jpg) no-repeat center center fixed;
  background-size: cover;
}
Puzzled Penguin

CSS -Hintergrund Vollbildschirm

body { 
  background: url(img/bg-image.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
Nostrabramus

Ähnliche Antworten wie “CSS -Hintergrund Vollbildschirm”

Fragen ähnlich wie “CSS -Hintergrund Vollbildschirm”

Weitere verwandte Antworten zu “CSS -Hintergrund Vollbildschirm” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen