Back to home

Table within a table

Names and cities
Name City Country
Peter Sydney Australia
Mary Wellington New Zealand
Colours and fruit
Fruit Colour Seeds
Apple Red Yes
Orange Orange Yes
Banana Yellow No
Stanley Paris France
<table>
	<caption>Names and cities</caption>
	<thead>
		<tr>
			<th>Name</th>
			<th>City</th>
			<th>Country</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<th>Peter</th>
			<td>Sydney</td>
			<td>Australia</td>
		</tr>
		<tr>
			<th>Mary</th>
			<td>Wellington</td>
			<td>New Zealand</td>
		</tr>
		<tr>
			<td colspan="3">
				<table>
					<caption>Colours and fruit</caption>
					<thead>
						<tr>
							<th>Fruit</th>
							<th>Colour</th>
							<th>Seeds</th>
						</tr>
					</thead>
					<tbody>
						<tr>
							<th>Apple</th>
							<td>Red</td>
							<td>Yes</td>
						</tr>
						<tr>
							<th>Orange</th>
							<td>Orange</td>
							<td>Yes</td>
						</tr>
						<tr>
							<th>Banana</th>
							<td>Yellow</td>
							<td>No</td>
						</tr>
					</tbody>
				</table>						
			</td>
		</tr>
		<tr>
			<th>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