“Tło CSS Pełny ekran” Kod odpowiedzi

Obraz tła CSS Wypełnij ekran

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

Jak pokryć pełny obraz w CSS

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

CSS Pełne okładki obraz tła

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

Tło CSS Pełny ekran

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

Odpowiedzi podobne do “Tło CSS Pełny ekran”

Pytania podobne do “Tło CSS Pełny ekran”

Więcej pokrewnych odpowiedzi na “Tło CSS Pełny ekran” w CSS

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu