Mise en page d'un liste d'annonces
Bonjour j'essaye de mettre en page la sortie d'annonce mais elle ce chevauche ? je comprends pas pourquoi?
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| <html>
<head>
<style>
.contenu_ano{
margin:0 auto;
}
.image{
width:160px;
height:110px;
margin-top:10px;
background-color:#ff0000;
}
.annonce{
width:100%;
height:110px;
margin-left:170px;
margin-top:-110px;
background-color:#00ff00;
}
</style>
</head>
<body>
<div class="contenu_ano">
<div class="image"> image</div>
<div class="annonce">
<table width="100%">
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</div>
</div>
</body>
</html> |