how can i make the table size fixed...the width of the table is varied......according to the data driven from the table.
how can i make the table & column length fixed
susha
Printable View
how can i make the table size fixed...the width of the table is varied......according to the data driven from the table.
how can i make the table & column length fixed
susha
Set the width of the table and the TD tags with the width attribute.
<TABLE cellpadding=0 cellspacing=0 border=0 width=600px>
<TR>
<TD width=200px>whatever</TD>
<TD width=200px>whatever</TD>
<TD width=200px>whatever</TD>
</TR>
</TABLE>