You are here: Reference > HTML > tags > tHead

tHead element

Browser support:
Designates a series of rows within the header of the table.
This element must be placed within a table element.
Tags you can use within: td, th and tr elements.
For more information, please see the page for the table element.
If you want to see the HTML tags by categories, please visit this page.
This element requires a closing tag.
JavaScript page for this element: tHead.

Possible members:

Attributes
Events
Styles
Pseudos
accessKey
Sets an access key to an element.
align
Sets the horizontal alignment of the contents in an object.
bgColor
Sets the background color.
ch
Sets an alignment character. The alignment of the contents of the cells in the same column depends on this character. The first occurrence of the alignment character in each cell in a column will be on a vertical axis.
char
Sets an alignment character. The alignment of the contents of the cells in the same column depends on this character. The first occurrence of the alignment character in each cell in a column will be on a vertical axis.
charOff
Sets the horizontal offset of the ch and char attributes. The direction of the offset is the same as the direction of the text (dir attribute).
chOff
Sets the horizontal offset of the ch and char attributes. The direction of the offset is the same as the direction of the text (dir attribute).
class
Sets the style class or classes that belong to the element.
contentEditable
3
Sets whether the contents of the object are editable.
dir
Sets the text direction as related to the lang attribute.
DISABLED
Sets the state of an object for user interaction.
draggable
3.55
Sets whether an element is draggable.
HIDEFOCUS
Specifies whether a dotted rectangle (focus rectangle) is drawn around an object while it has focus.
id
Sets a unique identifier for the object.
lang
Specifies the language of the element.
language
Sets the scripting language for the current element. Use it only for the script element.
name
Sets the name of an element.
spellcheck
Sets whether the automatic spellchecker is enabled.
style
Sets an inline style associated with an element.
tabIndex
Specifies the tabbing order for keyboard navigation using the TAB key.
title
Specifies a tooltip for an element.
unSelectable
Sets whether the selection process can start in an element's content.
vAlign
Specifies the vertical alignment of the text within an object.
xml:lang
Sets the language code of the XML document.

Example HTML code 1:

This example illustrates the use of the tHead element:
<table border="1px">
    <thead>
        <tr>
            <th>Fruit</th> 
            <th>Cost per kilo</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Apple</td>
            <td>$5</td>
        </tr>
        <tr>
            <td>Pear</td>
            <td>$10.50</td>
        </tr>
        <tr>
            <td>Peach</td>
            <td>$23.30</td>
        </tr>
    </tbody>
</table>
Did you find this example helpful? yes no

Related pages:

External links:

User Contributed Comments

Post Content

Post Content