Bonjour j'ai chercher partout et j'ai pas trouver la solution a mon problème
je voudrais que mon image se répète verticalement mais si je met pas de width et height elle ne s'affiche pas ou si je met sa taille elle s'affiche mais ne se répète pas voici mes code pour de plus ample informations:
CSS:
HTML:
Merci pour votre aide
Modifié par subzeros (30 May 2009 - 01:20)
je voudrais que mon image se répète verticalement mais si je met pas de width et height elle ne s'affiche pas ou si je met sa taille elle s'affiche mais ne se répète pas voici mes code pour de plus ample informations:
CSS:
body {
margin: auto;
background: #000000;
padding: 0;
color: #FFFFFF;
font: 12px Maiandra GD, Verdana, Times New Roman, serif;
height: 100%;
}
#main {
width: 100%;
height: 100%;
}
#header {
background: url('/interface/header.png') no-repeat center;
width: 100%;
height: 166px;
}
#border-left {
background: url('/interface/border-left.png');
background-repeat: repeat-y;
float: left;
margin-left: 22%; /* On deplace le border en pourcentage de gauche */
margin-top: 50px; /* Marge du haut */
width: 21px;
height: 83px;
}
#border-right {
background: url('/interface/border-right.png') repeat-y;
width: 21px;
height: 83px;
float: right;
margin-right: 22%; /* On deplace le border en pourcentage de droite */
margin-top: 50px; /* Marge du haut */
}
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
<head>
<title>Mon titre</title>
<!-- Chargement du style -->
<link rel="stylesheet" media="screen" type="text/css" id="css" href="/css/style.css" />
</head>
<body>
<div id="main">
<div id="header">
<div>
<div id="border-left"></div>
<div id="border-right"></div>
</div>
</div>
</div>
</body>
</html>
Merci pour votre aide
Modifié par subzeros (30 May 2009 - 01:20)