“CSS Background Image Fit” Respostas de código

CSS Background Image Fit

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

Como cobrir a imagem completa no CSS

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

Tamanho da imagem de fundo 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

Respostas semelhantes a “CSS Background Image Fit”

Perguntas semelhantes a “CSS Background Image Fit”

Mais respostas relacionadas para “CSS Background Image Fit” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código