|
Colgroup
<COLGROUP> </COLGROUP> COLGROUP lets an entire column of data inside of a table to be affected by one command rather than by using a separate command for each cell. Example:
<TABLE BORDER="2">
<COLGROUP WIDTH="400">
<TD>some text
<TD>some text
</COLGROUP>
<TR>
<TD>some text
<TD>some text
</TABLE>
|