sur la homepage d'animecdz que je prépare, le design des tables va changer ( cf http://www.animecdz.com/css/index.php?cdz=1 )
le code d'un des tableaux est comme suit :
CODE
<table width="586" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><img src="images/CityHunter-tableau_01.jpg" width="30" height="30" alt=""></td>
<td background="images/CityHunter-tableau_02.jpg" width="526" height="30">
<div align="center"><font size="2" face="Geneva, Arial, Helvetica, sans-serif">
<strong><font color="#FFFFFF">Dernières News</font></strong></font></div></td>
<td><img src="images/CityHunter-tableau_03.jpg" width="30" height="30" alt=""></td>
</tr>
<tr>
<td background="images/CityHunter-tableau_04.jpg" width="30" height="243" ></td>
<td width="526" height="243" valign="top" background="images/CityHunter-tableau_05.jpg"><div align="left">
<tr>
<td><img src="images/CityHunter-tableau_01.jpg" width="30" height="30" alt=""></td>
<td background="images/CityHunter-tableau_02.jpg" width="526" height="30">
<div align="center"><font size="2" face="Geneva, Arial, Helvetica, sans-serif">
<strong><font color="#FFFFFF">Dernières News</font></strong></font></div></td>
<td><img src="images/CityHunter-tableau_03.jpg" width="30" height="30" alt=""></td>
</tr>
<tr>
<td background="images/CityHunter-tableau_04.jpg" width="30" height="243" ></td>
<td width="526" height="243" valign="top" background="images/CityHunter-tableau_05.jpg"><div align="left">
Je sais qu'il n'est pas totalement aux normes W3C (HTML 4.01 transitionnal)
je souhaite afficher ce même tableau mais en structure avec des Div
J'ai commencé en faisant cela ( http://www.animecdz.com/css.php ) :
CODE
<style>
.float1 { float: left;margin:0;}
.float2 { vertical-align:top;width:526px;float: middle;background-image:url(http://www.animecdz.com/css/images/CityHunter-tableau_02.jpg);margin:0;}
.float3 { float: right;margin:0;}
.float4 { float: left;margin:0;}
.float5 { vertical-align:top;width:526px;float: middle;background-image:url(http://www.animecdz.com/css/images/CityHunter-tableau_05.jpg);margin:0;}
.float6 { float: right;margin:0;}
</style>
<br/><br/>
<div align="center">
<div class="newstable2" valign="top">
<div class="float1">
<img src="http://www.animecdz.com/css/images/CityHunter-tableau_01.jpg" width="30" height="30" alt="">
</div>
<div class="float2">
<p>légende 2</p>
</div>
<div class="float3">
<img src="http://www.animecdz.com/css/images/CityHunter-tableau_03.jpg" width="30" height="30" alt="">
</div>
</div>
<div class="newstable2" valign="top">
<div class="float1">
<img src="http://www.animecdz.com/css/images/CityHunter-tableau_04.jpg" width="30" height="30" alt="">
</div>
<div class="float2">
<p><font color="#FFFFFF"><b>Pas De Myth Cloth En Grande Distribution Avant 2006</b></font>
<br><br>Ce n'est pas en 2005 que nous verrons des Myth Cloth en grandes surfaces.<br></p>
</div>
<div class="float3">
<img src="http://www.animecdz.com/css/images/CityHunter-tableau_06.jpg" width="30" height="30" alt="">
</div>
</div>
</div>
.float1 { float: left;margin:0;}
.float2 { vertical-align:top;width:526px;float: middle;background-image:url(http://www.animecdz.com/css/images/CityHunter-tableau_02.jpg);margin:0;}
.float3 { float: right;margin:0;}
.float4 { float: left;margin:0;}
.float5 { vertical-align:top;width:526px;float: middle;background-image:url(http://www.animecdz.com/css/images/CityHunter-tableau_05.jpg);margin:0;}
.float6 { float: right;margin:0;}
</style>
<br/><br/>
<div align="center">
<div class="newstable2" valign="top">
<div class="float1">
<img src="http://www.animecdz.com/css/images/CityHunter-tableau_01.jpg" width="30" height="30" alt="">
</div>
<div class="float2">
<p>légende 2</p>
</div>
<div class="float3">
<img src="http://www.animecdz.com/css/images/CityHunter-tableau_03.jpg" width="30" height="30" alt="">
</div>
</div>
<div class="newstable2" valign="top">
<div class="float1">
<img src="http://www.animecdz.com/css/images/CityHunter-tableau_04.jpg" width="30" height="30" alt="">
</div>
<div class="float2">
<p><font color="#FFFFFF"><b>Pas De Myth Cloth En Grande Distribution Avant 2006</b></font>
<br><br>Ce n'est pas en 2005 que nous verrons des Myth Cloth en grandes surfaces.<br></p>
</div>
<div class="float3">
<img src="http://www.animecdz.com/css/images/CityHunter-tableau_06.jpg" width="30" height="30" alt="">
</div>
</div>
</div>
mais ce n'est pas vraiment ressemblant.
Qu'ai-je fait comme erreur ?
En vous remerciant de votre aide.