how do i put two html tables next to eachother to make the page more compact?
i want to put two seperate tables next to each other, like left and right....how do i do this? use as many examples as you can...if you do not understand the question...basically format a site to have tables in a same line horizontally...thank you...
Public Comments
- Put the two tables next to each other inside an outer table with two columns. Put one of the two tables in the left column and the other in the right column. This is the easiest way I can think of.
- <table> <tr> <td><table><tr><td>Nested table Left</td></tr></table></td> <td><table><tr><td>Nested table Right</td></tr></table></td> </tr> </table>
- could one table align to the left of the page and one align to the right of the page? using a wrap function like you would with an image
- put them both inside a table with two columns and one row.
Powered by Yahoo! Answers