Table

L

Louis

Hello,
How do I have two separate table side by side. Everytime I try the
table goes below.
Thanks
 
T

Tom Pepper Willett

Create a master table with 2 cells and place another table within each cell.
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
FrontPage 2003 Product Information:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
Understanding FrontPage:
http://msdn.microsoft.com/office/understanding/frontpage/
===
| Hello,
| How do I have two separate table side by side. Everytime I try the
| table goes below.
| Thanks
| --
| Louis Johnson MFB
| Microsoft Frontpage Beginner
| http://www.Bahamalouie.com
 
M

Murray

Insert one table with two columns and a single row. Insert a new table into
each of the original table's two cells.

Or...

Insert one table with align=left and a second table with align=right

Or...

Use CSS to float the two tables left/right and give one of them a margin big
enough to push it to the side of the other.

Or...

(and on and on)
 
S

Stefan B Rusynko

Or use pure html
<div align="center">
<table border="1" width="50%" align="left" id="table1"><tr>
<td>&nbsp;</td></tr><tr><td>&nbsp;</td></tr>
</table>
<table border="1" width="50%" align="right" id="table2"><tr>
<td>&nbsp;</td></tr><tr><td>&nbsp;</td></tr>
</table>
</div>





Murray said:
Insert one table with two columns and a single row. Insert a new table into each of the original table's two cells.

Or...

Insert one table with align=left and a second table with align=right

Or...

Use CSS to float the two tables left/right and give one of them a margin big enough to push it to the side of the other.

Or...

(and on and on)
 
M

Murray

Hmmm - how is that different from my second "Or"? WIth the table widths at
50% each, any effect of that <div> are negated, so it would be redundant and
not useful, no? Where is the space within which the contents of the div
will be centered?

--
Murray
============

Stefan B Rusynko said:
Or use pure html
<div align="center">
<table border="1" width="50%" align="left" id="table1"><tr>
<td>&nbsp;</td></tr><tr><td>&nbsp;</td></tr>
</table>
<table border="1" width="50%" align="right" id="table2"><tr>
<td>&nbsp;</td></tr><tr><td>&nbsp;</td></tr>
</table>
</div>
 
S

Stefan B Rusynko

Not different (I just noticed the 1st & CSS options) didn't see the 2nd one
 
Top