Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/12/2006, 12:47
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Re: Dos tablas una al lado de otra centradas, es posible ?

O bien esto si prefieres hacerlo con divs:

<body>
<div style="border: 5px solid green; margin: auto;">
<div style="float: left; width: 50%;">
<table border="1" width="100%">
<tbody>
<tr>
<td>2</td>
</tr>
</tbody>
</table>
</div>
<div style="float: left; width: 50%;">
<table border="1" width="100%">
<tbody>
<tr>
<td>2</td>
</tr>
</tbody>
</table>
</div>
<div style="clear: both;"></div>
</div>
</body>

Mikel.