Retour à la définition de la propriété css background-repeat | J'ai vu une erreur dans cette page

Exemple de code détaillé de la propriété css background-repeat.

Image de base <img src="../images/style_css/carre10x10.gif" align="middle"><br>
.identifiant{background-repeat:repeat}
<div style="width:200px; display:block; height:50px; background-repeat:repeat; background-image:url(../images/style_css/carre10x10.gif); border:1px solid green; "> </div>
.identifiant{background-repeat : repeat-y; }
<div style="width:200px; display:block; height:50px; background-repeat:repeat-y; background-image:url(../images/style_css/carre10x10.gif); border:1px solid green; "> </div>
.identifiant{ background-repeat : repeat-x; }
<div style="width:200px; display:block; height:50px; background-repeat:repeat-x; background-image:url(../images/style_css/carre10x10.gif); border:1px solid green; "> </div>
.identifiant{ background-repeat : no-repeat; }
<div style="width:200px; display:block; height:50px; background-repeat:no-repeat; background-image:url(../images/style_css/carre10x10.gif); border:1px solid green; "> </div>

Interprétation du code détaillé de la propriété css background-repeat par votre navigateur.

Image de base
.identifiant{background-repeat:repeat}

.identifiant{background-repeat : repeat-y;}
.identifiant{ background-repeat : repeat-x; }
.identifiant{ background-repeat : no-repeat;}

Interprétation normal du code de la propriété css background-repeat (copie d'écran).

copie d'écran de l'affichage de la propriété css background-repeat