Hiya, I'm going crazy, there is something very simply I'm probably missing, but for the life of me, I cannot work it out! Here is a some test code: <html> <head></head> <body> <table align="left" width="200"> <tr><td><p>test1</p></td></tr> </table> <table align="left" width="200"> <tr><td><p>test2</p></td></tr> </table> </body> </html> Code (markup): What this does is create a webpage with the following output: But what I am trying to do is get table1 to be displayed under table2, not beside, ie: How can I do this without putting both tables in another table? Thanks for your help! Cheers ... Gerald.
Remove the align="left" from the first table because it makes the table left of the following element.