w3-video.com logo

HTML5 Tutorial

Home HTML5 XAMPP .htaccess Firefox Notepad++

Share it



th ... ⁄th, optional element ⁄occurrences

The th element is optional. th can be added once or multiple times within the tr element

Valid Syntax 1
th absent; optional element
1
2
3
4
5
6
7
8
9
<!doctype html>
<html>
<head>
<title>...</title>
</head>
<body>

</body>
</html>
Valid Syntax 2
multiple th elements present
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html>
<head>
<title>...</title>
</head>
<body>

<table>
<caption>...</caption>
<thead>
<tr><th>...<th>...</tr>
<thead>
<tfoot>
<tr><th>...<th>...</tr>
<tr><td>...<td>...</tr>
<tfoot>
<tbody>
<tr><th>...<th>...</tr>
<tr><td>...<td>...</tr>
<tbody>
</table>

</body>
</html>
th intro th browser display th parents - children th syntaxth, td colspan, rowspan attributesth, td, headers attribute