Page 1 of 1

help help help!

Posted: Thu Jan 16, 2003 1:43 pm
by Rita
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>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</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

Posted: Thu Jan 16, 2003 5:16 pm
by Kriek
Place <COL SPAN="2"> after the first <TABLE>

Be sure to close all your tables with </TABLE>

Posted: Mon Jan 20, 2003 8:49 am
by elipollak
You can nest tables inside tables like this :

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>
Hope this helps