Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

table next to another table

Status
Not open for further replies.

blexman

Programmer
Jul 18, 2001
34
0
0
CA
How can I put a table next to another table when the table on the left is fixed at 1 column by 9 rows and the table on the right is 4 columns by n rows ?

thanks
hanton

 
align=left and align=right

can you elaberate on the question? from what is sounds like all you need to do is allign the tables left to right but that may not be it. A language that doesn't affect the way you think about programming is not worth knowing.
admin@onpntwebdesigns.com
 
currently I have a form with 2 nested tables , table1 and table 2. table 2 is dynamicly created, I would like to add table 3 which is a menu of submit buttons :



=====================table1======2 x 8=====================


=======================================================

====table3====1x9 =========table2===n x 4======
submit button1
submit button2
submit button3
.
.
.submit button9
=============== =========================
 
kind of like this
<html>
<body>
<table>
<tr>
<td colspan=2>

<table>
<tr><td width=500 bgcolor=yellow>&nbsp;</td></tr>
</table>

</td>
</tr>

<tr>
<td>
<table><tr><td width=250 bgcolor=blue>&nbsp;</td></tr></table>
</td>

<td>
<table><tr><td width=250 bgcolor=blue>&nbsp;</td></tr></table>
</td>
</tr>

</table>
</body> A language that doesn't affect the way you think about programming is not worth knowing.
admin@onpntwebdesigns.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top