![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
19/01/2007, 10:24
|
![Avatar de JavierB](http://static.forosdelweb.com/customavatars/avatar16568_12.gif) | Colaborador | | Fecha de Ingreso: febrero-2002 Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años Puntos: 772 | |
Re: tablas horizontalmente en linea una traz otra ? Hola de nuevo.
Un ejemplo:
Código:
<html>
<head>
<style type="text/css">
#algo table {float:left; border:1px solid red}
</style>
</head>
<body>
<div id="algo">
<table>
<tr><td>aaa</td></tr>
</table>
<table>
<tr><td>aaa</td></tr>
</table>
<table>
<tr><td>aaa</td></tr>
</table>
</div>
</body>
</html>
Saludos, |