23/12/2006, 12:47
|
| Colaborador | | Fecha de Ingreso: octubre-2006 Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 18 años, 2 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. |