# HTML Tables

<figure><img src="/files/SGAaALU1jSC7agyngYxx" alt=""><figcaption></figcaption></figure>

{% code overflow="wrap" lineNumbers="true" %}

```markup
<!DOCTYPE html>
<html>
<head>
<style>
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}
</style>
</head>
<body>

<h2>HTML Table</h2>

<table>
  <tr>
    <th>Company</th>
    <th>Contact</th>
    <th>Country</th>
  </tr>
  <tr>
    <td>Alfreds Futterkiste</td>
    <td>Maria Anders</td>
    <td>Germany</td>
  </tr>
  <tr>
    <td>Centro comercial Moctezuma</td>
    <td>Francisco Chang</td>
    <td>Mexico</td>
  </tr>
  <tr>
    <td>Ernst Handel</td>
    <td>Roland Mendel</td>
    <td>Austria</td>
  </tr>
  <tr>
    <td>Island Trading</td>
    <td>Helen Bennett</td>
    <td>UK</td>
  </tr>
  <tr>
    <td>Laughing Bacchus Winecellars</td>
    <td>Yoshi Tannamuri</td>
    <td>Canada</td>
  </tr>
  <tr>
    <td>Magazzini Alimentari Riuniti</td>
    <td>Giovanni Rovelli</td>
    <td>Italy</td>
  </tr>
</table>

</body>
</html>
```

{% endcode %}

### Define an HTML Table

A table in HTML consists of table cells inside rows and columns.

{% code overflow="wrap" lineNumbers="true" %}

```markup
<table>
  <tr>
    <th>Company</th>
    <th>Contact</th>
    <th>Country</th>
  </tr>
  <tr>
    <td>Alfreds Futterkiste</td>
    <td>Maria Anders</td>
    <td>Germany</td>
  </tr>
  <tr>
    <td>Centro comercial Moctezuma</td>
    <td>Francisco Chang</td>
    <td>Mexico</td>
  </tr>
</table>
```

{% endcode %}

### Table Cells

Each table cell is defined by a `<td>` and a `</td>` tag.

`td` stands for table data.

Everything between `<td>` and `</td>` are the content of the table cell.

{% code overflow="wrap" lineNumbers="true" %}

```markup
<table>
  <tr>
    <td>Emil</td>
    <td>Tobias</td>
    <td>Linus</td>
  </tr>
</table>
```

{% endcode %}

### Table Rows

Each table row starts with a `<tr>` and ends with a `</tr>` tag.

`tr` stands for table row.

{% code overflow="wrap" lineNumbers="true" %}

```markup
<table>
  <tr>
    <td>Emil</td>
    <td>Tobias</td>
    <td>Linus</td>
  </tr>
  <tr>
    <td>16</td>
    <td>14</td>
    <td>10</td>
  </tr>
</table>
```

{% endcode %}

### Table Headers

Sometimes you want your cells to be table header cells. In those cases use the `<th>` tag instead of the `<td>` tag:

`th` stands for table header.

{% code overflow="wrap" lineNumbers="true" %}

```markup
<table>
  <tr>
    <th>Person 1</th>
    <th>Person 2</th>
    <th>Person 3</th>
  </tr>
  <tr>
    <td>Emil</td>
    <td>Tobias</td>
    <td>Linus</td>
  </tr>
  <tr>
    <td>16</td>
    <td>14</td>
    <td>10</td>
  </tr>
</table>
```

{% endcode %}

## HTML Table Borders

HTML tables can have borders of different styles and shapes.

### How To Add a Border

When you add a border to a table, you also add borders around each table cell:

<figure><img src="/files/w6fD5Va3f860gwGUyFcg" alt=""><figcaption></figcaption></figure>

To add a border, use the CSS `border` property on `table`, `th`, and `td` elements:

{% code overflow="wrap" lineNumbers="true" %}

```css
table, th, td {
  border: 1px solid black;
}
```

{% endcode %}

### Collapsed Table Borders

To avoid having double borders like in the example above, set the CSS `border-collapse` property to `collapse`.

This will make the borders collapse into a single border:

<figure><img src="/files/pfWrFObGkIXnTygkWjXl" alt=""><figcaption></figcaption></figure>

{% code overflow="wrap" lineNumbers="true" %}

```css
table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}
```

{% endcode %}

### Style Table Borders

If you set a background color of each cell, and give the border a white color (the same as the document background), you get the impression of an invisible border:

<figure><img src="/files/CNtoMFsgO1ESQHzTurBx" alt=""><figcaption></figcaption></figure>

{% code overflow="wrap" lineNumbers="true" %}

```css
table, th, td {
  border: 1px solid white;
  border-collapse: collapse;
}
th, td {
  background-color: #96D4D4;
}
```

{% endcode %}

### Round Table Borders

With the `border-radius` property, the borders get rounded corners:

<figure><img src="/files/T0wcxGvszZHwbyE11QgC" alt=""><figcaption></figcaption></figure>

{% code overflow="wrap" lineNumbers="true" %}

```css
table, th, td {
  border: 1px solid black;
  border-radius: 10px;
}
```

{% endcode %}

Skip the border around the table by leaving out `table` from the css selector:

<figure><img src="/files/Q19WHkHzMWNgxGO2r2E6" alt=""><figcaption></figcaption></figure>

{% code overflow="wrap" lineNumbers="true" %}

```css
th, td {
  border: 1px solid black;
  border-radius: 10px;
}
```

{% endcode %}

### Dotted Table Borders

With the `border-style` property, you can set the appearance of the border.

<figure><img src="/files/mPgixMeZ9IytLt0XCVwx" alt=""><figcaption></figcaption></figure>

The following values are allowed:

* `dotted`    &#x20;
* `dashed`    &#x20;
* `solid`    &#x20;
* `double`    &#x20;
* `groove`    &#x20;
* `ridge`    &#x20;
* `inset`    &#x20;
* `outset`    &#x20;
* `none`    &#x20;
* `hidden`  &#x20;

{% code overflow="wrap" lineNumbers="true" %}

```css
 th, td {
  border-style: dotted;
}
```

{% endcode %}

### Border Color

With the `border-color` property, you can set the color of the border.

<figure><img src="/files/B1lDJ1cbYpih0nqwa65i" alt=""><figcaption></figcaption></figure>

{% code overflow="wrap" lineNumbers="true" %}

```css
 th, td {
  border-color: #96D4D4;
}
```

{% endcode %}

### HTML Table Sizes

HTML tables can have different sizes for each column, row or the entire table.

<figure><img src="/files/Vmnjd9hfPr8wDF6jqnNQ" alt=""><figcaption></figcaption></figure>

Use the `style` attribute with the `width` or `height` properties to specify the size of a table, row or column.

### HTML Table Width

To set the width of a table, add the `style` attribute to the `<table>` element:

{% code overflow="wrap" lineNumbers="true" %}

```markup
<table style="width:100%">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>94</td>
  </tr>
</table>
```

{% endcode %}

### HTML Table Column Width

<figure><img src="/files/NNgY2RtLMoSXFkV3LIEV" alt=""><figcaption></figcaption></figure>

To set the size of a specific column, add the `style` attribute on a `<th>` or `<td>` element:

{% code overflow="wrap" lineNumbers="true" %}

```html
<table style="width:100%">
  <tr>
    <th style="width:70%">Firstname</th>
    <th>Lastname</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>94</td>
  </tr>
</table>
```

{% endcode %}

### HTML Table Row Height

<figure><img src="/files/2GIyvlubJT1DqtguFFZR" alt=""><figcaption></figcaption></figure>

To set the height of a specific row, add the `style` attribute on a table row element:

{% code overflow="wrap" lineNumbers="true" %}

```html
<table style="width:100%">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th>
    <th>Age</th>
  </tr>
  <tr style="height:200px">
    <td>Jill</td>
    <td>Smith</td>
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>94</td>
  </tr>
</table>
```

{% endcode %}

### HTML Table Headers

HTML tables can have headers for each column or row, or for many columns/rows.

<figure><img src="/files/MDXCfOIpDBei2jdpM0uF" alt=""><figcaption></figcaption></figure>

### HTML Table Headers

Table headers are defined with `th` elements. Each `th` element represents a table cell.

{% code overflow="wrap" lineNumbers="true" %}

```markup
<table>
  <tr>
    <th>Firstname</th>
    <th>Lastname</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>94</td>
  </tr>
</table>
```

{% endcode %}

### Vertical Table Headers

To use the first column as table headers, define the first cell in each row as a `<th>` element:

{% code overflow="wrap" lineNumbers="true" %}

```html
<table>
  <tr>
    <th>Firstname</th>
    <td>Jill</td>
    <td>Eve</td>
  </tr>
  <tr>
    <th>Lastname</th>
    <td>Smith</td>
    <td>Jackson</td>
  </tr>
  <tr>
    <th>Age</th>
    <td>94</td>
    <td>50</td>
  </tr>
</table>
```

{% endcode %}

### Align Table Headers

By default, table headers are bold and centered:

<figure><img src="/files/nuEwz80i1ZdSCmFljfPl" alt=""><figcaption></figcaption></figure>

To left-align the table headers, use the CSS `text-align` property:

{% code overflow="wrap" lineNumbers="true" %}

```css
th {
  text-align: left;
}
```

{% endcode %}

### Header for Multiple Columns

You can have a header that spans over two or more columns.

<figure><img src="/files/RtpF6hX3kQZz7is0E5I5" alt=""><figcaption></figcaption></figure>

To do this, use the `colspan` attribute on the `<th>` element:

{% code overflow="wrap" lineNumbers="true" %}

```html
<table>
  <tr>
    <th colspan="2">Name</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>94</td>
  </tr>
</table>
```

{% endcode %}

### Table Caption

You can add a caption that serves as a heading for the entire table.

<figure><img src="/files/q5WhJPHNSAnstX7u0JkY" alt=""><figcaption></figcaption></figure>

To add a caption to a table, use the `<caption>` tag:

{% code overflow="wrap" lineNumbers="true" %}

```html
<table style="width:100%">
  <caption>Monthly savings</caption>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$50</td>
  </tr>
</table>
```

{% endcode %}

### HTML Table Padding & Spacing

HTML tables can adjust the padding inside the cells, and also the space between the cells.

<figure><img src="/files/19G1VEGF4tgRNcEenLxV" alt=""><figcaption></figcaption></figure>

### HTML Table - Cell Padding

Cell padding is the space between the cell edges and the cell content.

By default the padding is set to 0.

To add padding on table cells, use the CSS `padding` property:

{% code overflow="wrap" lineNumbers="true" %}

```css
th, td {
  padding: 15px;
}
```

{% endcode %}

To add padding only above the content, use the `padding-top` property.

And the others sides with the `padding-bottom`, `padding-left`, and `padding-right` properties:

{% code overflow="wrap" lineNumbers="true" %}

```css
th, td {
  padding-top: 10px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 40px;
}
```

{% endcode %}

### HTML Table - Cell Spacing

Cell spacing is the space between each cell.

By default the space is set to 2 pixels.

To change the space between table cells, use the CSS `border-spacing` property on the `table` element:

{% code overflow="wrap" lineNumbers="true" %}

```css
table {
  border-spacing: 30px;
}
```

{% endcode %}

### HTML Table Colspan & Rowspan

HTML tables can have cells that span over multiple rows and/or columns.

<figure><img src="/files/gO57uz7VIsRFQVVbaEXk" alt=""><figcaption></figcaption></figure>

### HTML Table - Colspan

To make a cell span over multiple columns, use the `colspan` attribute:

{% code overflow="wrap" lineNumbers="true" %}

```html
<table>
  <tr>
    <th colspan="2">Name</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>43</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>57</td>
  </tr>
</table>
```

{% endcode %}

### HTML Table - Rowspan

To make a cell span over multiple rows, use the `rowspan` attribute:

{% code overflow="wrap" lineNumbers="true" %}

```html
<table>
  <tr>
    <th>Name</th>
    <td>Jill</td>
  </tr>
  <tr>
    <th rowspan="2">Phone</th>
    <td>555-1234</td>
  </tr>
  <tr>
    <td>555-8745</td>
</tr>
</table>
```

{% endcode %}

### HTML Table Styling

Use CSS to make your tables look better.

### HTML Table - Zebra Stripes

If you add a background color on every other table row, you will get a nice zebra stripes effect.

<figure><img src="/files/SosEFoukYpygxx8dOYgN" alt=""><figcaption></figcaption></figure>

To style every other table row element, use the `:nth-child(even)` selector like this:

{% code overflow="wrap" lineNumbers="true" %}

```css
tr:nth-child(even) {
  background-color: #D6EEEE;
}
```

{% endcode %}

### HTML Table - Vertical Zebra Stripes

To make vertical zebra stripes, style every other *column*, instead of every other *row*.

<figure><img src="/files/8WuaJgPjrk44BpkDE2qV" alt=""><figcaption></figcaption></figure>

Set the `:nth-child(even)` for table data elements like this:

{% code overflow="wrap" lineNumbers="true" %}

```css
td:nth-child(even), th:nth-child(even) {
  background-color: #D6EEEE;
}
```

{% endcode %}

### Combine Vertical and Horizontal Zebra Stripes

You can combine the styling from the two examples above and you will have stripes on every other row and every other column.

If you use a transparent color you will get an overlapping effect.

<figure><img src="/files/fznfHXRT3lAZqRAo6QYt" alt=""><figcaption></figcaption></figure>

Use an `rgba()` color to specify the transparency of the color:

{% code overflow="wrap" lineNumbers="true" %}

```css
tr:nth-child(even) {
  background-color: rgba(150, 212, 212, 0.4);
}

th:nth-child(even),td:nth-child(even) {
  background-color: rgba(150, 212, 212, 0.4);
}
```

{% endcode %}

### Horizontal Dividers

<figure><img src="/files/Muy1WAV9OgTqVhKJhHTC" alt=""><figcaption></figcaption></figure>

If you specify borders only at the bottom of each table row, you will have a table with horizontal dividers.

Add the `border-bottom` property to all `tr` elements to get horizontal dividers:

{% code overflow="wrap" lineNumbers="true" %}

```css
tr {
  border-bottom: 1px solid #ddd;
}
```

{% endcode %}

### Hoverable Table

Use the `:hover` selector on `tr` to highlight table rows on mouse over:

<figure><img src="/files/ogpSWmKlrpDJokyZ51NL" alt=""><figcaption></figcaption></figure>

{% code overflow="wrap" lineNumbers="true" %}

```css
tr:hover {
    background-color: #D6EEEE;
}
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://codingzonebd.gitbook.io/html-elements/html-tables.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
