Table row  - <TR>   -  </TR>

Previous- TITLE - Title  |  Next-TT - Typewriter font

Description
Defines a table row which contains cells denoted by the TD tags.
Attributes
NameValuesDescription
aligncenter|left|right|justify|charAlignment
backgroundstringBackground of inline layer
bgcolorcolorBackground Colour, using syntax "#rrggbb".
bordercolorcolor
bordercolordarkcolor
bordercolorlightcolor
charstringSpecifies the character used to align the text contents of the cell
charoffstringSpecifies the offset to the first occurrence of the character defined in the CHAR attribute
classclassnameClass of the element which is used to associate the element with a style sheet.
dirltr|rtlThe direction in which text flows when surrounded by text which flows in different directions.
event_namescript_codeDefines script to run on event such as OnMouseOver
heightnumberHeight
idstringA unique name to identify an element.
langlanguage_typeThe ISO description for the language of the element.
languagejavascript|jscript|vbscript|vbs
nowrap
stylestringSpecifies style information for the element.
titlestringTitle for element which is often displayed as a tool-tip when the cursor hovers over the element.
valignbaseline|bottom|center|topSpecifies the vertical alignment of the content within the cells

Example
<table border="1">

<tbody>
    <tr>
        <th>title</th><th>date</th>
    </tr>
    <tr>
        <td>this is the first title</td>
         <td>this is the first date</td>
    </tr>
</tbody>
</table>
Will be displayed as :
titledate
this is the first title this is the first date

Compatability
HTMLNETSCAPEINTERNET EXPLORER
4.1N2N3N4N6IE3IE4IE5IE6
YES YES YES YES YES YES YES YES YES

Previous- TITLE - Title  |  Next-TT - Typewriter font