0% found this document useful (0 votes)
84 views

HTML Table Advanced Features and Accessibility - Learn Web Development - MDN

The document discusses advanced features of HTML tables, including adding captions, grouping rows into header, body, and footer sections using <caption>, <thead>, <tfoot>, and <tbody> tags, and nesting tables for accessibility and to allow more control over styling. It provides examples and instructions for learners to practice implementing these features.

Uploaded by

nuikal376
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
84 views

HTML Table Advanced Features and Accessibility - Learn Web Development - MDN

The document discusses advanced features of HTML tables, including adding captions, grouping rows into header, body, and footer sections using <caption>, <thead>, <tfoot>, and <tbody> tags, and nesting tables for accessibility and to allow more control over styling. It provides examples and instructions for learners to practice implementing these features.

Uploaded by

nuikal376
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 11

11/30/23, 4:16 PM HTML table advanced features and accessibility - Learn web development | MDN

HTML table advanced features and accessibility


In the second article in this module, we look at some more advanced features of HTML tables
— such as captions/summaries and grouping your rows into table head, body and footer
sections — as well as looking at the accessibility of tables for visually impaired users.

Prerequisites: The basics of HTML (see Introduction to HTML).


Objective: To learn about more advanced HTML table features, and the
accessibility of tables.

Adding a caption to your table with <caption>


You can give your table a caption by putting it inside a <caption> element and nesting that
inside the <table> element. You should put it just below the opening <table> tag.
HTML
<table>
<caption>
Dinosaurs in the Jurassic period
</caption>


</table>

As you can infer from the brief example above, the caption is meant to contain a description
of the table contents. This is useful for all readers wishing to get a quick idea of whether the
table is useful to them as they scan the page, but particularly for blind users. Rather than
have a screen reader read out the contents of many cells just to find out what the table is
about, the user can rely on a caption and then decide whether or not to read the table in
greater detail.
https://developer.mozilla.org/en-US/docs/Learn/HTML/Tables/Advanced 1/11
11/30/23, 4:16 PM HTML table advanced features and accessibility - Learn web development | MDN

A caption is placed directly beneath the <table> tag.

Note: The summary attribute can also be used on the <table> element to provide a
description — this is also read out by screen readers. We'd recommend using the
<caption> element instead, however, as summary is deprecated and can't be read by

sighted users (it doesn't appear on the page).

Active learning: Adding a caption


Let's try this out, revisiting an example we first met in the previous article.
1. Open up your language teacher's school timetable from the end of HTML Table Basics, or
make a local copy of our timetable-fixed.html file.
2. Add a suitable caption for the table.
3. Save your code and open it in a browser to see what it looks like.

Note: You can find our version on GitHub — see timetable-caption.html (see it live
also ).

Adding structure with <thead>, <tfoot>, and <tbody>


As your tables get a bit more complex in structure, it is useful to give them more structural
definition. One clear way to do this is by using <thead> , <tfoot> , and <tbody> , which allow
you to mark up a header, footer, and body section for the table.
These elements don't make the table any more accessible to screen reader users, and don't
result in any visual enhancement on their own. They are however very useful for styling and
layout — acting as useful hooks for adding CSS to your table. To give you some interesting
examples, in the case of a long table you could make the table header and footer repeat on
every printed page, and you could make the table body display on a single page and have the
contents available by scrolling up and down.
https://developer.mozilla.org/en-US/docs/Learn/HTML/Tables/Advanced 2/11
11/30/23, 4:16 PM HTML table advanced features and accessibility - Learn web development | MDN

To use them:
The <thead> element must wrap the part of the table that is the header — this is usually
the first row containing the column headings, but this is not necessarily always the case.
If you are using <col> / <colgroup> element, the table header should come just below
those.
The <tfoot> element needs to wrap the part of the table that is the footer — this might
be a final row with items in the previous rows summed, for example. You can include the
table footer right at the bottom of the table as you'd expect, or just below the table
header (the browser will still render it at the bottom of the table).
The <tbody> element needs to wrap the other parts of the table content that aren't in the
table header or footer. It will appear below the table header or sometimes footer,
depending on how you decided to structure it.

Note: <tbody> is always included in every table, implicitly if you don't specify it in
your code. To check this, open up one of your previous examples that doesn't
include <tbody> and look at the HTML code in your browser developer tools — you
will see that the browser has added this tag for you. You might wonder why you
ought to bother including it at all — you should, because it gives you more control
over your table structure and styling.

Active learning: Adding table structure


Let's put these new elements into action.
1. First of all, make a local copy of spending-record.html and minimal-table.css in a new
folder.
2. Try opening it in a browser — You'll see that it looks OK, but it could stand to be
improved. The "SUM" row that contains a summation of the spent amounts seems to be
in the wrong place, and there are some details missing from the code.
3. Put the obvious headers row inside a <thead> element, the "SUM" row inside a <tfoot>
element, and the rest of the content inside a <tbody> element.
https://developer.mozilla.org/en-US/docs/Learn/HTML/Tables/Advanced 3/11
11/30/23, 4:16 PM HTML table advanced features and accessibility - Learn web development | MDN

4. Save and refresh, and you'll see that adding the <tfoot> element has caused the "SUM"
row to go down to the bottom of the table.
5. Next, add a colspan attribute to make the "SUM" cell span across the first four columns,
so the actual number appears at the bottom of the "Cost" column.
6. Let's add some simple extra styling to the table, to give you an idea of how useful these
elements are for applying CSS. Inside the head of your HTML document, you'll see an
empty <style> element. Inside this element, add the following lines of CSS code:
CSS
tbody {
font-size: 95%;
font-style: italic;
}

tfoot {
font-weight: bold;
}

7. Save and refresh, and have a look at the result. If the <tbody> and <tfoot> elements
weren't in place, you'd have to write much more complicated selectors/rules to apply the
same styling.

Note: We don't expect you to fully understand the CSS right now. You'll learn more
about this when you go through our CSS modules (Introduction to CSS is a good
place to start; we also have an article specifically on styling tables).
Your finished table should look something like the following:

https://developer.mozilla.org/en-US/docs/Learn/HTML/Tables/Advanced 4/11
11/30/23, 4:16 PM HTML table advanced features and accessibility - Learn web development | MDN

My spending record
How I chose to spend my money

Purchase Location Date Evaluation Cost (€)

Haircut Hairdresser 12/09 Great idea 30

Lasagna Restaurant 12/09 Regrets 18

Shoes Shoeshop 13/09 Big regrets 65

Toothpaste Supermarket 13/09 Good 5

SUM 118

Note: You can also find it on GitHub as spending-record-finished.html .

Nesting Tables
It is possible to nest a table inside another one, as long as you include the complete
structure, including the <table> element. This is generally not really advised, as it makes the
markup more confusing and less accessible to screen reader users, and in many cases you
might as well just insert extra cells/rows/columns into the existing table. It is however
sometimes necessary, for example if you want to import content easily from other sources.
The following markup shows a simple nested table:
HTML Play
<table id="table1">
<tr>
<th>title1</th>
<th>title2</th>
<th>title3</th>
https://developer.mozilla.org/en-US/docs/Learn/HTML/Tables/Advanced 5/11
11/30/23, 4:16 PM HTML table advanced features and accessibility - Learn web development | MDN

</tr>
<tr>
<td id="nested">
<table id="table2">
<tr>
<td>cell1</td>
<td>cell2</td>
<td>cell3</td>
</tr>
</table>
</td>
<td>cell2</td>
<td>cell3</td>
</tr>
<tr>
<td>cell4</td>
<td>cell5</td>
<td>cell6</td>
</tr>
</table>

The output of which looks something like this:


Play
title1 title2 title3

cell1 cell2 cell3 cell2 cell3

cell4 cell5 cell6

Tables for visually impaired users


Let's recap briefly on how we use data tables. A table can be a handy tool, for giving us quick
access to data and allowing us to look up different values. For example, it takes only a short
glance at the table below to find out how many rings were sold in Gent during August 2016.

https://developer.mozilla.org/en-US/docs/Learn/HTML/Tables/Advanced 6/11
11/30/23, 4:16 PM HTML table advanced features and accessibility - Learn web development | MDN

To understand its information we make visual associations between the data in this table and
its column and/or row headers.

Items Sold August 2016


Clothes Accessories
Trousers Skirts Dresses Bracelets Rings
Antwerp 56 22 43 72 23
Belgium Gent 46 18 50 61 15
Brussels 51 27 38 69 28
Amsterdam 89 34 69 85 38
The Netherlands
Utrecht 80 12 43 36 19
But what if you cannot make those visual associations? How then can you read a table like
the above? Visually impaired people often use a screen reader that reads out information on
web pages to them. This is no problem when you're reading plain text but interpreting a table
can be quite a challenge for a blind person. Nevertheless, with the proper markup we can
replace visual associations by programmatic ones.

Note: There are around 253 Million people living with Visual Impairment according to
WHO data in 2017 .

This section of the article provides further techniques for making tables as accessible as
possible.
Using column and row headers
Screen readers will identify all headers and use them to make programmatic associations
between those headers and the cells they relate to. The combination of column and row
https://developer.mozilla.org/en-US/docs/Learn/HTML/Tables/Advanced 7/11
11/30/23, 4:16 PM HTML table advanced features and accessibility - Learn web development | MDN

headers will identify and interpret the data in each cell so that screen reader users can
interpret the table similarly to how a sighted user does.
We already covered headers in our previous article — see Adding headers with <th>
elements.
The scope attribute
A new topic for this article is the scope attribute, which can be added to the <th> element to
tell screen readers exactly what cells the header is a header for — is it a header for the row it
is in, or the column, for example? Looking back to our spending record example from earlier
on, you could unambiguously define the column headers as column headers like this:
HTML
<thead>
<tr>
<th scope="col">Purchase</th>
<th scope="col">Location</th>
<th scope="col">Date</th>
<th scope="col">Evaluation</th>
<th scope="col">Cost (€)</th>
</tr>
</thead>

And each row could have a header defined like this (if we added row headers as well as
column headers):
HTML
<tr>
<th scope="row">Haircut</th>
<td>Hairdresser</td>
<td>12/09</td>
<td>Great idea</td>
<td>30</td>
</tr>

https://developer.mozilla.org/en-US/docs/Learn/HTML/Tables/Advanced 8/11
11/30/23, 4:16 PM HTML table advanced features and accessibility - Learn web development | MDN

screen readers will recognize markup structured like this, and allow their users to read out the
entire column or row at once, for example.
scope has two more possible values — colgroup and rowgroup . These are used for headings
that sit over the top of multiple columns or rows. If you look back at the "Items Sold August
2016" table at the start of this section of the article, you'll see that the "Clothes" cell sits
above the "Trousers", "Skirts", and "Dresses" cells. All of these cells should be marked up as
headers ( <th> ), but "Clothes" is a heading that sits over the top and defines the other three
subheadings. "Clothes" therefore should get an attribute of scope="colgroup" , whereas the
others would get an attribute of scope="col" .
The id and headers attributes
An alternative to using the scope attribute is to use id and headers attributes to create
associations between headers and cells. The way they are used is as follows:
1. You add a unique id to each <th> element.
2. You add a headers attribute to each <td> element. Each headers attribute has to contain
a list of the id s of all the <th> elements that act as a header for that cell, separated by
spaces.
This gives your HTML table an explicit definition of the position of each cell in the table,
defined by the header(s) for each column and row it is part of, kind of like a spreadsheet. For
it to work well, the table really needs both column and row headers.
Returning to our spending costs example, the previous two snippets could be rewritten like
this:
HTML
<thead>
<tr>
<th id="purchase">Purchase</th>
<th id="location">Location</th>
<th id="date">Date</th>
<th id="evaluation">Evaluation</th>

https://developer.mozilla.org/en-US/docs/Learn/HTML/Tables/Advanced 9/11
11/30/23, 4:16 PM HTML table advanced features and accessibility - Learn web development | MDN

<th id="cost">Cost (€)</th>


</tr>
</thead>
<tbody>
<tr>
<th id="haircut">Haircut</th>
<td headers="location haircut">Hairdresser</td>
<td headers="date haircut">12/09</td>
<td headers="evaluation haircut">Great idea</td>
<td headers="cost haircut">30</td>
</tr>


</tbody>

Note: This method creates very precise associations between headers and data
cells but it uses a lot more markup and does not leave any room for errors. The
scope approach is usually enough for most tables.

Active learning: playing with scope and headers


1. For this final exercise, we'd like you to first make local copies of items-sold.html and
minimal-table.css , in a new directory.
2. Now try adding in the appropriate scope attributes to make this table more appropriate.
3. Finally, try making another copy of the starter files, and this time make the table more
accessible using id and headers attributes.

Note: You can check your work against our finished examples — see items-sold-
scope.html (also see this live ) and items-sold-headers.html (see this live too
).

Summary
https://developer.mozilla.org/en-US/docs/Learn/HTML/Tables/Advanced 10/11
11/30/23, 4:16 PM HTML table advanced features and accessibility - Learn web development | MDN

There are a few other things you could learn about tables in HTML, but this is all you need to
know for now. Next, you can test yourself with our HTML tables assessment. Have fun!
If you are already learning CSS and have done well on the assessment, you can move on and
learn about styling HTML tables — see Styling tables.
If you want to get started with learning CSS, check out the CSS Learning Area!

This page was last modified on Aug 4, 2023 by MDN contributors.

https://developer.mozilla.org/en-US/docs/Learn/HTML/Tables/Advanced 11/11

You might also like