Note: If you don't know what an element/tag is and/or how you must use it we recommend you read our HTML tags and attributes tutorial, which you can find in our HTML tutorials section.
Table of contents
Bypass table of contentsThe HTML col tag is used in tables to provide common attibutes to all the cells in a column or group of columns. It must be inserted right after the starting tag of the HTML table element, and must preserve an order: the first declaration affects the first column, the second declaration affects the second column, and so on.
This order can be affected by the use of the "span" attribute. This attribute can be used in this tag to affect more than one column with the same declaration.
HTML col tags can also be contained by the HTML colgroup tag, when the author needs to define a common set of attributes to columns inside a column group. To learn more about this practice, refer to the "HTML tables" tutorial.
Note, that some attributes available for this tag are purely presentational (align, valign, width, char and charoff), reason for which their use is not recommended. Because of this, the use of the HTML col tag has been reduced, since CSS only supports four properties for it: border, background, width, and visibility.
The following example shows a common use of the HTML col tag to define the width of columns. Note that in the first declaration, the first and the second columns are affected thanks to the "span" attribute. The properties are set with CSS using the style attribute.
| Name | Gender | Age |
|---|---|---|
| Richard | Male | 32 |
| Anna | Female | 18 |
| Dean | Male | 23 |
| Sean | Male | 65 |
The "id" attribute assigns an identifier to the associated element. This identifier must be unique in the document and can be used to refer to that element in other instances (e.g., from client-side scripts).
The "class" attribute assigns a class name (or a list of class names separated by spaces) to the container element. It is used together with style sheets and tells the browser the class (or classes) to which the element is associated.
A class gives presentational attributes to elements (read more at the Cascading Style Sheets tutorial).
This attribute is used to define presentational attributes for the containing element, and its value should be composed by style sheets properties. Although in some cases it can become useful, a better practice is to place presentational attributes in external files, relating them to elements with the "class" attribute. This way you keep the semantic and presentational parts of your document separated.
You can find more information about presentational attributes at the Cascading Style Sheets tutorial.
The purpose of this attribute is to provide a title for the element. Its value must be a short and accurate description of the element. Browsers usually render it as a "tool tip" when the user puts the mouse pointer over the element for a short period of time.
Specifies the language of an element's content. The default value is "unknown".
When writing XHTML 1.0 documents, the attribute used to specify the language of an elements is "xml:lang". For forward and backward compatibility both attributes can be used simultaneously like in the example below. Note that in XHTML 1.1 the "lang" attribute has been completely replaced by "xml:lang" and its use is no longer valid.
This attribute indicates the direction in which the texts of the element must be read. This includes content, attribute values and tables. It has two possible values that are case-insensitive:
This attribute specifies the number of consecutive columns "spanned" or affected by the element or its attributes.
This attribute specifies the width for all the cells in the affected columns.
Sets the alignment for the text inside a cell in the affected columns. It can take one of the following case-insensitive values:
Sets the vertical alignment for the text inside a cell in the affected columns. It can take one of the following case-insensitive values:
Specifies a single character that will act as axis for text alignment. For its value to be considered, the "align" attribute must be set to "char".
Note that browsers aren't required to support this attribute. This, added to its presentational nature, constitute a good reason not to rely on it.
Specifies an offset for the alignment character (first occurrence) on each line. Text direction, set with the "dir" attribute, must be taken into account to decide which the first occurrence will be.
Note that browsers aren't required to support this attribute. This, added to its presentational nature, constitute a good reason not to rely on it.
See a complete list and information about events in HTML
Diseño y desarrollo: Latitud29.com