|
You are here > Web Design > Web Accessibility > 43.1. Cell Headings
Cell Headings
Use the TH element to label table heading cells of a row or column. Each TH element cell should also have a unique "id" attribute. The heading cells become reference points for data cells.
For example:
...
<TR>
<TH ID="c1">Name</TH>
<TH ID="c2">Month</TH>
<TH ID="c3">Day</TH>
<TH ID="c4">Year</TH>
</TR>
...
Data Cell Labels >>>
|