|    
			
				19/01/2007, 10:24
			
			
			  | 
  |   |  | Colaborador |  |  Fecha de Ingreso: febrero-2002 Ubicación: Madrid 
						Mensajes: 25.052
					 Antigüedad: 23 años, 8 meses 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,       |