probá con algo así:
Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>New Document</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<style>
#Contenedor1{
float: left;
width: 49%;
}
#Contenedor2{
float: left;
width: 49%;
}
</style>
</head>
<body>
<div id="Contenedor1">
<table border="1" width="100%">
<tr>
<td>Tabla 1</td>
</tr>
</table>
</div>
<div id="Contenedor2">
<table border="1" width="100%">
<tr>
<td>Tabla 1</td>
</tr>
</table>
</div>
</body>
</html>
DX