80
HTML <tr> tag
HTML <tr> tag is used to define the rows in the table. The <tr> tag can consist one or more <th> head cells and <td> data cells to define a single row of HTML table.
The <tr> tag must be a direct child of <table> element or it can be nested child of <thead>, <tbody>, and <tfoot> elements.
Syntax
Following are some specifications about the HTML <tr> tag
Display | Inline |
Start tag/End tag | Start and End tag |
Usage | Table content |
Example
Output:
Attribute:
Tag-specific attributes:
Attribute | Value | Description |
---|---|---|
align | right left center justify char | It determines the alignment of the content in the table row. (Not Supported in HTML5) |
bgcolor | rgb(x,x,x) #xxxxx color_name | It defines the background color of the table row. (Not Supported in HTML5) |
char | character | It specifies the alignment of content to the character. (Not Supported in HTML5) |
charoff | number | It specifies the number of character the table row content will be aligned from the character, and which is specified by char attribute. (Not Supported in HTML5) |
valign | Top Middle Bottom baseline | It specifies the vertical alignment of the table row content. (Not Supported in HTML5) |
Global attribute:
The <tr> tag supports the Global attributes in HTML.
Event attribute:
The <tr> tag supports the Event attributes in HTML.
Supporting Browsers
Element | Chrome | IE | Firefox | Opera | Safari |
<tr> | Yes | Yes | Yes | Yes | Yes |
Next TopicHTML track Tag