docs.rodeo

MDN Web Docs mirror

: The Table Row element

{{HTMLSidebar}} 

The <tr> HTML element defines a row of cells in a table. The row’s cells can then be established using a mix of {{HTMLElement("td")}}  (data cell) and {{HTMLElement("th")}}  (header cell) elements.

{{EmbedInteractiveExample("pages/tabbed/tr.html","tabbed-taller")}} 

Attributes

This element includes the global attributes.

Deprecated attributes

The following attributes are deprecated and should not be used. They are documented below for reference when updating existing code and for historical interest only.

Usage notes

Examples

See {{HTMLElement("table")}}  for a complete table example introducing common standards and best practices.

Basic row setup

This example demonstrates a table with four rows and three columns, where the first column contains headers for the row data cells.

HTML

Four <tr> elements are used to create four table rows. Each row contains three cells - one header cell ({{HTMLElement("th")}} ) and two data cells ({{HTMLElement("td")}} ) - creating three columns. The scope attribute set on each header cell specifies which cells they relate to, which in this example is all data cells within the row.

<table>
  <tbody>
    <tr>
      <th scope="row">A</th>
      <td>Alfa</td>
      <td>AL fah</td>
    </tr>
    <tr>
      <th scope="row">B</th>
      <td>Bravo</td>
      <td>BRAH voh</td>
    </tr>
    <tr>
      <th scope="row">C</th>
      <td>Charlie</td>
      <td>CHAR lee</td>
    </tr>
    <tr>
      <th scope="row">D</th>
      <td>Delta</td>
      <td>DELL tah</td>
    </tr>
  </tbody>
</table>

CSS

The CSS {{cssxref(":nth-of-type")}}  pseudo-class is used to select every odd row and set the {{cssxref("background-color")}}  of those rows to a slightly darker tone, creating a so-called “zebra stripe” effect. This alternating background makes the rows of data in the table easier to parse and read—imagine having many rows and columns and trying to find some data in a particular row. In addition, the row header cells ({{HTMLElement("th")}}  elements) are highlighted with a {{cssxref("background-color")}}  to distinguish them from the data cells ({{HTMLElement("td")}}  elements).

tr:nth-of-type(odd) {
  background-color: #eee;
}

tr th[scope="row"] {
  background-color: #d6ecd4;
}
table {
  border-collapse: collapse;
  border: 2px solid rgb(140 140 140);
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

th,
td {
  border: 1px solid rgb(160 160 160);
  padding: 8px 10px;
}

Result

{{EmbedLiveSample("Basic_row_setup", 650, 140)}} 

Header row

This example extends the basic table from the previous example by adding a header row as the first row of the table.

HTML

An additional table row (<tr>) is added as the first row of the table with column header cells ({{HTMLElement("th")}} ) providing a header for each column. We put this row in a {{HTMLElement("thead")}}  grouping element to indicate this is the header of the table. The scope attribute is added to each header cell (<th>) within this head row to explicitly specify that each header cell relates to all the cells within its own column, even though those cells are in the {{HTMLElement("tbody")}} .

<table>
  <thead>
    <tr>
      <th scope="col">Symbol</th>
      <th scope="col">Code word</th>
      <th scope="col">Pronunciation</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">A</th>
      <td>Alfa</td>
      <td>AL fah</td>
    </tr>
    <tr>
      <th scope="row">B</th>
      <td>Bravo</td>
      <td>BRAH voh</td>
    </tr>
    <tr>
      <th scope="row">C</th>
      <td>Charlie</td>
      <td>CHAR lee</td>
    </tr>
    <tr>
      <th scope="row">D</th>
      <td>Delta</td>
      <td>DELL tah</td>
    </tr>
  </tbody>
</table>

CSS

The CSS is nearly unchanged from the previous example, except for some additional styling to highlight the “header row” so that the headers of the columns stand out from the other cells.

tr:nth-of-type(odd) {
  background-color: #eee;
}

tr th[scope="col"] {
  background-color: #505050;
  color: #fff;
}

tr th[scope="row"] {
  background-color: #d6ecd4;
}
table {
  border-collapse: collapse;
  border: 2px solid rgb(140 140 140);
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

th,
td {
  border: 1px solid rgb(160 160 160);
  padding: 8px 10px;
}

Result

{{EmbedLiveSample("Header_row", 650, 170)}} 

Sorting rows

There are no native methods for sorting the rows (<tr> elements) of a {{HTMLElement("table")}} . But using {{jsxref("Array.prototype.sort()")}} , {{domxref("Node.removeChild")}} , and {{domxref("Node.appendChild")}} , a custom sort() function can be implemented in JavaScript to sort an {{domxref("HTMLCollection")}}  of <tr> elements.

HTML

A {{HTMLElement("tbody")}}  element is used in this basic table to mark the body section of the table and to include three rows (<tr> elements) with data ({{HTMLElement("td")}}  elements), creating one column with numbers in descending order.

<table>
  <tbody>
    <tr>
      <td>3</td>
    </tr>
    <tr>
      <td>2</td>
    </tr>
    <tr>
      <td>1</td>
    </tr>
  </tbody>
</table>

JavaScript

In the JavaScript code below, the created sort() function is attached to the {{HTMLElement("tbody")}}  element so that it sorts the table cells in order of increasing value and updates the display accordingly.

HTMLTableSectionElement.prototype.sort = function (cb) {
  Array.from(this.rows)
    .sort(cb)
    .forEach((e) => this.appendChild(this.removeChild(e)));
};

document
  .querySelector("table")
  .tBodies[0].sort((a, b) => a.textContent.localeCompare(b.textContent));
table {
  border-collapse: collapse;
  border: 2px solid rgb(140 140 140);
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

td {
  border: 1px solid rgb(160 160 160);
  padding: 4px 8px;
}

Result

{{EmbedLiveSample('Sorting_rows', '650', '80')}} 

Sorting rows with a click on header cells

This example extends the basic table from the previous example by making the sorting interactive and independent for multiple columns.

HTML

An additional data cell ({{HTMLElement("td")}}  element) is added to each row (<tr> element) within the table body ({{HTMLElement("tbody")}}  element) to create a second column with letters in ascending order. Using the {{HTMLElement("thead")}}  element, a head section is added before the body section to introduce a head row with table header cells ({{HTMLElement("th")}}  element). These header cells are used in the JavaScript code below to make them clickable and then to perform the corresponding sorting when activated per click.

<table>
  <thead>
    <tr>
      <th>Numbers</th>
      <th>Letters</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>3</td>
      <td>A</td>
    </tr>
    <tr>
      <td>2</td>
      <td>B</td>
    </tr>
    <tr>
      <td>1</td>
      <td>C</td>
    </tr>
  </tbody>
</table>

JavaScript

A click event handler is added to each table header ({{HTMLElement("th")}}  element) of each {{HTMLElement("table")}}  in the {{domxref("HTMLDocument", "document")}} ; it sorts all the rows (<tr> elements) of the {{HTMLElement("tbody")}}  based on the contents of the data cells ({{HTMLElement("td")}}  elements) contained in the rows.

[!NOTE] This solution assumes that the {{HTMLElement("td")}}  elements are populated by raw text with no descendant elements.

const allTables = document.querySelectorAll("table");

for (const table of allTables) {
  const tBody = table.tBodies[0];
  const rows = Array.from(tBody.rows);
  const headerCells = table.tHead.rows[0].cells;

  for (const th of headerCells) {
    const cellIndex = th.cellIndex;

    th.addEventListener("click", () => {
      rows.sort((tr1, tr2) => {
        const tr1Text = tr1.cells[cellIndex].textContent;
        const tr2Text = tr2.cells[cellIndex].textContent;
        return tr1Text.localeCompare(tr2Text);
      });

      tBody.append(...rows);
    });
  }
}
table {
  border-collapse: collapse;
  border: 2px solid rgb(140 140 140);
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

th,
td {
  border: 1px solid rgb(160 160 160);
  padding: 4px 8px;
}

th {
  background-color: #505050;
  color: #fff;
  cursor: pointer;
}

Result

{{EmbedLiveSample('Sorting_rows_with_a_click_on_header_cells', '650', '100')}} 

[!NOTE] To be usable and accessible, the header cell of each sortable column must be identifiable as a sorting button and each must define whether the column is currently sorted in ascending or descending order visually and with the aria-sort attribute. See the ARIA Authoring Practices Guide’s sortable table example for more information.

Technical summary

Content categories None
Permitted content Zero or more `{{HTMLElement("td")}}`  and/or `{{HTMLElement("th")}}`  elements; `{{Glossary("script-supporting element", "script-supporting elements")}}`  (`{{HTMLElement("script")}}`  and `{{HTMLElement("template")}}` ) are also allowed.
Tag omission Start tag is mandatory. End tag may be omitted if the <tr> element is immediately followed by a <tr> element, or if the row is the last element in its parent table group (`{{HTMLElement("thead")}}` , `{{HTMLElement("tbody")}}`  or `{{HTMLElement("tfoot")}}` ) element.
Permitted parents `{{HTMLElement("table")}}`  (only if the table has no child `{{HTMLElement("tbody")}}`  element, and even then only after any `{{HTMLElement("caption")}}` , `{{HTMLElement("colgroup")}}` , and `{{HTMLElement("thead")}}`  elements); otherwise, the parent must be a `{{HTMLElement("thead")}}` , `{{HTMLElement("tbody")}}`  or `{{HTMLElement("tfoot")}}`  element.
Implicit ARIA role row
Permitted ARIA roles Any
DOM interface `{{DOMxRef("HTMLTableRowElement")}}` 

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN