“Largura de fundo CSS” Respostas de código

Tamanho da imagem de fundo CSS para encaixar na tela

html {
    height: 100%
}
body {
    background-image:url("../images/myImage.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
Itchy Ibis

imagem de fundo da capa total CSS

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

Faça a imagem de fundo a largura total

html {
    height: 100%;
}
body {
    color: #999;
    background: url('../images/background/main_bg.jpg') no-repeat center center fixed;
    font-family: 'Roboto', sans-serif;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
Upset Unicorn

Imagem de fundo html ajustada na tela

body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
Real Raven

Largura de fundo CSS

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

Como escalar uma imagem BG ACC para o tamanho da div

/* One way */
background-size: cover;

/* Other option */
background-size: contain;
Tanishq Vyas

Respostas semelhantes a “Largura de fundo CSS”

Perguntas semelhantes a “Largura de fundo CSS”

Mais respostas relacionadas para “Largura de fundo CSS” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código