Sections de tableaux

  • <thead> <tfoot> <tbody> représentent des sections du tableau�

<table summary="...">
	<thead>
		<tr>
		 	<th>Nom</th>
			<th>Prénom</th>
		</tr>
	</thead>
	<tfoot>…..
	</tfoot>
 	<tbody>
		 <tr>
			<td>Abitbol</td>
			 <td>Georges</td>
		</tr>
	</tbody>
</table>

Last updated