[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
HTMLSPEC-COL
Used to specify properties for a column or entire grouping of columns that are apart of a another column group, normal within a table.
Attributes
Specifies the horizontal alignment of column cell content. ( char ) allows for alignment to take place at a specific character defined by the char="" attribute.
Specifies the character where the column text should be horizontally aligned. Only applies when align="char".
Specifies the marginal value in pixels when column text falls near the character specified by the char="text" attribute.
Specifies the number of columns <col> is defined to handle.
Specifies the vertical alignment of column cell content.
Specifies the width of each column the <col> element is defined to handle.
Live Example
HTML Tags Center
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
HTMLSPEC-COL
Col
UsageUsed to specify properties for a column or entire grouping of columns that are apart of a another column group, normal within a table.
Attributes
align="left |right | center | justify | char"
Specifies the horizontal alignment of column cell content. ( char ) allows for alignment to take place at a specific character defined by the char="" attribute.
char="text"
Specifies the character where the column text should be horizontally aligned. Only applies when align="char".
charoff="#"
Specifies the marginal value in pixels when column text falls near the character specified by the char="text" attribute.
span="#"
Specifies the number of columns <col> is defined to handle.
valign="top | middle | bottom | baseline"
Specifies the vertical alignment of column cell content.
width="#"
Specifies the width of each column the <col> element is defined to handle.
Live Example
<html> <head><title>COL Document Example</title></head> <body> <table border="1" width="100%"> <colgroup> <col align="left"> <col align="center"> <tbody> <tr> <td>Text alignment is "left".</td> <td>Text alignment is "center"></td> </tr> </table> </body> </html>
HTML Tags Center
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
