“Comment rendre l'image d'arrière-plan adaptée à l'écran” Réponses codées

Taille de l'image d'arrière-plan CSS pour ajuster l'écran

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

Comment couvrir l'image complète dans CSS

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

Faire une image de fond pleine largeur

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

L'image d'arrière-plan HTML ajustée à l'écran

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

Comment rendre l'image d'arrière-plan adaptée à l'écran

body{
	background: url(""); /* enter the image path */
    background-repeat: no-repeat;
	background-size: 100%;
}
Nalin k

Réponses similaires à “Comment rendre l'image d'arrière-plan adaptée à l'écran”

Questions similaires à “Comment rendre l'image d'arrière-plan adaptée à l'écran”

Plus de réponses similaires à “Comment rendre l'image d'arrière-plan adaptée à l'écran” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code