CSS repeat

Fermé
TATATATA - 19 avril 2012 à 11:24
boyback Messages postés 223 Date d'inscription vendredi 20 février 2009 Statut Membre Dernière intervention 9 décembre 2012 - 19 avril 2012 à 11:58
Bonjour,

pouvez vous m'aider svp, je n'arrive pas à afficher mon image en répétition verticale.

<div id="block">

<div id="frame-gauche"></div>

</div>

--------------------------------------------------------------------------------------------------
#block
{
background-color: #6E2F1E;
height: 100px;
width: 1271px;
margin-right: auto;
margin-left: auto;
position: absolute;
}

#frame-gauche
{
width: 126px;
position: relative;
background-image: url(images/frame-gauche.png);
height: 7px;
background-repeat: repeat-y;
}

merci d'avance.

1 réponse

boyback Messages postés 223 Date d'inscription vendredi 20 février 2009 Statut Membre Dernière intervention 9 décembre 2012 23
19 avril 2012 à 11:58
Bonjour,

Essai avec ceci :

background-image: url("images/frame-gauche.png");

Tu peux aussi faire :

background : url("images/frame-gauche.png") repeat-y;
0