Mon, 2003-12-22 02:34
When I do this code:
<html> <head> <title>Mavurik.net - eSL Concept</title> </head> <body> <table align="left" border="1" bordercolor="#000000" width="850" height="100"> <tr> <td> <p>hey</p> </td> </tr> </table> <table align="left" border="1" bordercolor="#000000" width="850" height="100"> <tr> <td> <p>hey</p> </td> </tr> </table> </body> </html>
I end up with two tables next to each other and not one above and the other below, what's going on? O_o
Mon, 2003-12-22 10:15
#1
Tables next to each other? wtf?
Remove align="Left"
When you aligned the first table left, you were telling everything else to wrap around the table, but of course the second table could go up next to it but not wrap.
Regards
Day
Tue, 2004-01-06 10:39
#2
Tables next to each other? wtf?
yes the align left is probably the culprit there. Heck - you could use a <br> (<br/>?) tag and do the job. Better still, this looks like it could be handled a lot simpler with two divs instead of tables. Just an idea... :idea: