CSS repeat
TATATATA
-
boyback Messages postés 223 Date d'inscription Statut Membre Dernière intervention -
boyback Messages postés 223 Date d'inscription Statut Membre Dernière intervention -
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.
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.
A voir également:
- CSS repeat
- Enlever le soulignement d'un lien css ✓ - Forum Webmastering
- CSS/Comment enlever couleur liens ? ✓ - Forum CSS
- Css download - Télécharger - HTML
- Background color css ✓ - Forum CSS
- Comment créer un lien non souligné ✓ - Forum Réseaux sociaux
1 réponse
Bonjour,
Essai avec ceci :
background-image: url("images/frame-gauche.png");
Tu peux aussi faire :
background : url("images/frame-gauche.png") repeat-y;
Essai avec ceci :
background-image: url("images/frame-gauche.png");
Tu peux aussi faire :
background : url("images/frame-gauche.png") repeat-y;