Forum Moderators: open
CSS margin is what you need. ;)
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="language" content="english">
<meta http-equiv="Content-Style-Type" content="text/css"><title></title>
<style type="text/css">
table {
border:2px solid #999;
}
td {
width:100px;
height:62px;
border:1px solid #666;
text-align:center;
}
#table1 {[blue]
margin-bottom:50px;[/blue]
}</style>
</head>
<body><table id="table1"><tr>
<td>table one</td>
</tr></table><table id="table2"><tr>
<td>table two</td>
</tr></table></body>
</html>
It certainly is. ;)
No problem, you're very welcome. :)