Glubase - share your knowledge


All / Computers / Programming / HTML / XHTML





  • View Command

HTML / XHTML Reference

HTML / XHTML tr definition

Browser support
IEFFOpSaf
FullFullFullFull

Type: block-level element

Syntax

<tr> ... </tr>

Description

Defines a table row in a table.

Attributes

Common attributes.

Example

[Try this example yourself]
<table border="1">
  <tr>
    <td>cell1</td>
    <td>cell2</td>
  </tr>
  <tr>
    <td>cell3</td>
    <td>cell4</td>
  </tr>
</table>

Output

cell1 cell2
cell3 cell4
  • Comments

No comments added.