4.3.26 tr : table row

The tr tag denotes a row in a table. It works the same as in HTML. It can occur only in a table tag, and should contain only td table data tags.

Example:

 
 
 
Cell (1,1)Cell (2,1)
Cell (1,2)Cell (2,2)

Will be formatted approximately as

Cell (1,1) Cell (2,1)
Cell (1,2) Cell (2,2)

See also: table (148), th (152), td (150)