“CSS -Hintergrundbild passt” Code-Antworten

CSS -Hintergrundbild passt

body {
    background-image:    url(images/background.svg);
    background-size:     cover;                      /* <------ */
    background-repeat:   no-repeat;
    background-position: center center;              /* optional, center the image */
}
Blue Bird

So bedecken Sie das vollständige Bild in CSS

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

Hintergrundbildgröße CSS

#example1 {
  background: url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: auto;
}

#example2 {
  background: url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: 300px 100px;
}
Giamblers

Ähnliche Antworten wie “CSS -Hintergrundbild passt”

Fragen ähnlich wie “CSS -Hintergrundbild passt”

Weitere verwandte Antworten zu “CSS -Hintergrundbild passt” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen