is there a way to make column 1 and column 2 different sizes but still be the same table? for example column one would be 25% and column 2 would be 75%.
is there a way to make column 1 and column 2 different sizes but still be the same table? for example column one would be 25% and column 2 would be 75%.
Code:<TABLE border="9" cellpadding="9" cellspacing="9" align="center"> <TR> <TD width="25%">row 1 width = 25%</TD> <TD width="75%">row 1 width = 75%</TD> </TR> <TR> <TD width="25%">row 2 width = 25%</TD> <TD width="75%">row 2 width = 75%</TD> </TR> </TABLE>
thank you!
Bookmarks