The col element (<col>) specifies properties for each column within a <colgroup> element in a <table>.
Overview TableThis example uses the col element to specify characteristics for default columns in a table.
<HTML>
<BODY>
<TABLE BORDER="2" RULES="groups">
<COL SPAN="2" STYLE="color:red">
<COL STYLE="color:blue">
<TR>
<TD>This column is in the first group.</TD>
<TD>This column is in the first group.</TD>
<TD>This column is in the second group.</TD>
</TR>
<TR>
<TD>This column is in the first group.</TD>
<TD>This column is in the first group.</TD>
<TD>This column is in the second group.</TD>
</TR>
</TABLE>
</BODY>
</HTML>
Notes Remarks
COL elements can be nested within a COLGROUP element. If this is done, the nested COL attributes override the COLGROUP attributes. You can use the COL and COLGROUP elements for similar purposes. However, you must use the COLGROUP element to determine where table internal dividing lines (rules) should go. This is illustrated in the following example. Use the SPAN attribute to specify the number of table columns that the COLGROUP defines. This attribute has a default value equal to one. The table object and its associated elements have a separate table object model, which uses different methods than the general object model. For more information on the table object model, see Building Tables Dynamically.
Related specificationscol
Microsoft Developer Network: [Windows Internet Explorer API reference Article]
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4