Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

Table Borders

Table Headers

Occasionally, you may desire certain cells to serve as table header cells. In such instances, utilize the <th> tag instead of the <td> tag.th” represents table header.

Example

Designate the initial row as containing table header cells.

<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>

By default, the text within <th> elements is bold and centered; however, you can modify this appearance using CSS.

How To Add a Border

To incorporate a border, apply the CSS border property to the table, th, and td elements.

table border 1

Example

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

Collapsed Table Borders

To prevent the occurrence of double borders as shown in the example above, establish the CSS border-collapse property as collapse.

This action will cause the borders to merge into a single border.

table border 2

Example

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

Style Table Borders

When you assign a background color to each cell and set the border color to white (matching the document background), it creates the illusion of an invisible border.

table border 3

Example

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

Round Table Borders

Using the border-radius property results in rounded corners for the borders.

table border 4

Example

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

Exclude the table from the CSS selector to omit the border around it.

tableborder 5

Example

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

Dotted Table Borders

The border-style property allows you to define the visual style of the border.

table border

The subsequent values are permissible:

  • dotted     
  • dashed     
  • solid     
  • double     
  • groove     
  • ridge     
  • inset     
  • outset     
  • none     
  • hidden

Example

th, td {
  border-style: dotted;
}

Border Color

Using the border-color property enables you to specify the color of the border.

table border 6

Example

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

 

Click to Learn