ciao ragazi..dovrei floattare due tabelle mentre la terza dovrebbe partire normalemente a sinistra.

Vi allego il codice

codice:
<!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"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Documento senza titolo</title> <style type="text/css"> table.uno {     float:left;     width:45%; }  table.due   {     width:45%;     float:right; }​ table.tre   { 	clear:both; }​ </style> </head>  <body> <table width="350" cellpadding="0" cellspacing="0" class="uno">   <tr>     <td align="center" class="table_style2"></td>     <td align="center" class="table_style2">tabella 1</td>     <td align="center" class="table_style2"></td>     <td align="center" class="table_style2"></td>     <td align="center" class="table_style2"></td>   </tr>   <tr>     <td class="table_style2"><span class="text_small">       <center>       </center>       </span></td>     <td class="table_style2"><span class="text_small">       <center>       </center>       </span></td>     <td class="table_style2"><span class="text_small">       <center>       </center>     </span></td>     <td class="table_style2"><center>     </center></td>     <td class="table_style2"><span class="text_small">       <center>       </center>       </span></td>   </tr> </table> <table width="170" cellpadding="0" cellspacing="0" class="due">   <tr>     <td align="center" class="table_style2"><span class="title_small">tabella clear</span></td>   </tr>   <tr>     <td class="table_style2"><span class="text_small">       <center>       </center>       </span></td>   </tr> </table> <table width="170" cellpadding="0" cellspacing="0" class="tre">   <tr>     <td align="center" class="table_style2"><span class="title_small">tabella 2 late</span></td>   </tr>   <tr>     <td class="table_style2"><span class="text_small">       <center>       </center>       </span></td>   </tr> </table> </body> </html>