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

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

.identifiant{background:green url(background.gif)}
<div style="width:200px; height:50px; background: green url(../images/style_css/background.gif)"> </div>
.identifiant{background: green url(../images/style_css/background.gif) no-repeat fixed 10px 20px; }
<div style="width:200px; height:50px; background:green url(../images/style_css/background.gif) no-repeat fixed 10px 20px; "> </div>
.identifiant{background:green; }
<div style="width:200px; height:50px; background:green; "> </div>

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

.identifiant{background:green url(background.gif)}

.identifiant{background: green url(../images/style_css/background.gif) no-repeat fixed 10px 20px;}
.identifiant{background:green;}

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

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