you can't put two tables side by side unless you use CSS for postioning or wrap the two tables in another table.
Using rowspan and/or colspan is a better option.
You don't really want two tables side by side. If CSS is out of the question, then what I would do is simply nest some tables.
for example >>> Left Column would have Table 1, and Right Column would have Table 2.
<table> <tr> <td> <table><tr><td>Content for Table 1</td></tr></table> </td> <td> <table><tr><td>Content for Table 2</td></tr></table> </td> </tr> </table>
'
Keep in mind this is not ideal as nesting tables can sometimes lead to other problems, but if done right it will work. If you want to try CSS its a way better option.
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.
timjpriebe posted this at 18:42 — 27th December 2005.
He has: 2,667 posts
Joined: Dec 2004
Can you copy and paste the HTML code here?
DaveyBoy posted this at 18:48 — 27th December 2005.
They have: 453 posts
Joined: Feb 2003
Using Frontpage.
dk01 posted this at 22:48 — 27th December 2005.
He has: 516 posts
Joined: Mar 2002
Busy posted this at 20:20 — 27th December 2005.
He has: 6,151 posts
Joined: May 2001
you can't put two tables side by side unless you use CSS for postioning or wrap the two tables in another table.
Using rowspan and/or colspan is a better option.
DSMag posted this at 15:01 — 28th December 2005.
He has: 11 posts
Joined: Jul 2005
You don't really want two tables side by side. If CSS is out of the question, then what I would do is simply nest some tables.
for example >>> Left Column would have Table 1, and Right Column would have Table 2.
<table>
<tr>
<td>
<table><tr><td>Content for Table 1</td></tr></table>
</td>
<td>
<table><tr><td>Content for Table 2</td></tr></table>
</td>
</tr>
</table>
Keep in mind this is not ideal as nesting tables can sometimes lead to other problems, but if done right it will work. If you want to try CSS its a way better option.
- James
What's Your Factor? - T-shirt Design Contest (FREE to enter)
Design Studio Magazine - connecting designers with ASP, CSS, PHP, SEO, Graphics, and more
Christian Designs - where quality and honesty share a friendship.
Focus Minded - my Blog
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.