do you know how I can get a table next to the other one? like on the right side of the other?
<head>
<title></title>
</head>
<body bgcolor="#B3D5FF">
<p><span style="position: absolute; left: 0; top: -1"><img border="0" src="benadams.jpg" width="800" height="600"></span></p>
<div align="left">
<table border="1" width="338" height="226">
<tr>
<td width="338" height="226">
<div style="position: absolute; top: 540; left: 11; width: 328; height: 261">
<tr>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<div style="position: absolute; top: 600; left: 506; width: 337; height: 27">
<table border="0" width="337" height="16">
<tr>
<td width="337" height="16">d</td>
</div>
I can't see if the code is right or wrong, please help me
http://www.shattered-dreamz.com/rita_basicfacts.php
help help help!
Moderator: General Moderators
You can nest tables inside tables like this :
Hope this helps
Code: Select all
<table>
<tr>
<td> <!-- both tables below are in this <td> tag -->
<table> <!-- Start of table 1 : on the left -->
<tr>
<td> stuff in the first col of first row here </td>
</tr>
</table> <!-- End of Table 1 : on the left
<table> <!-- Start of table 2 : on the right -->
<tr>
<td> stuff in the first col of first row here </td>
</tr>
</table> <!-- End of Table 1 : on the left
</td>
</tr>
</table>