colocar dos tablas una al lado de otra ??

raul
09 de Agosto del 2005
Hola, como hago para colocar 2 tablas, pero una al lado de otra pero con una separacion en medio ??
Nose si me explico

Blixter
09 de Agosto del 2005
Anidalas en otra tabla. Me explico:

<table><tr>

<!-- Primera tabla-->
<td>
<table>
...
</table>
</td>

<!-- Segunda tabla-->
<td>
<table>
...
</table>
</td>

</tr></table>

yan
09 de Agosto del 2005
hola, creo que si bueno se me ocurre que tienes que hacerlo con capas aqui te coloco un codigo a ver si te sirve:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Documento sin t&iacute;tulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
</head>

<body>
<div id="Layer2" style="position:absolute; width:200px; height:24px; z-index:2; left: 217px; top: 17px;">
<table width="200" border="2" cellspacing="0" cellpadding="0">
<tr>
<th scope="col">&nbsp;</th>
</tr>
</table>
</div>
<div id="Layer1" style="position:absolute; width:200px; height:20px; z-index:1">
<table width="200" border="2" cellspacing="0" cellpadding="0">
<tr>
<th scope="col">&nbsp;</th>
</tr>
</table>
</div>
<p>&nbsp;</p>
</body>
</html>