Log in

View Full Version : table columns



xoblivionxfantasyx
04-21-2006, 10:30 PM
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%.

JRS
04-21-2006, 11:19 PM
<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>

xoblivionxfantasyx
04-22-2006, 12:04 AM
thank you!