Back to home

Table test 04 - scope at top and side

This is the caption
Name City Country
Peter Sydney Australia
Mary Wellington New Zealand
Stanley Paris France

Code

<table>
	<caption>This is the caption</caption>
	<thead>
		<tr>
			<th scope="col">Name</th>
			<th scope="col">City</th>
			<th scope="col">Country</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<th scope="row">Peter</th>
			<td>Sydney</td>
			<td>Australia</td>
		</tr>
		<tr>
			<th scope="row">Mary</th>
			<td>Wellington</td>
			<td>New Zealand</td>
		</tr>
		<tr>
			<th scope="row">Stanley</th>
			<td>Paris</td>
			<td>France</td>
		</tr>
	</tbody>
</table>
Support chart
OS Browser NVDA 2014.4 JAWS 16 VoiceOver
Windows 7 IE 11 x x
Windows 7 IE 8 x x
Windows 7 Chrome 39 x x
Windows 7 Firefox 34 x x
OSX 10.9 Chrome 39 x
OSX 10.9 Firefox 34 x
OSX 10.9 Safari 7 x

Bottom of page - Back to home