1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
<!-- style pour tous les médias -->
<style type=text/css media=all>
table {font-family:arial; font-size:9px;}
</style>
<!-- pour l'impression seulement -->
<style type=text/css media=print>
thead {
display: table-header-group;
}
tfoot {
display: table-footer-group;
}
</style>
<table border=1 bordercolor=#eeeeee align=center width=50% cellspacing=0>
<!-- Création de l'entête à répéter -->
<thead>
<tr>
<th style='font-size:14px;font-style:bold;'>Entête</th>
</tr>
</thead>
<!-- Création du pied de page à répéter -->
<tfoot>
<tr>
<th style='font-size:14px;font-style:bold;'>Pied de page</th>
</tr>
</tfoot>
<!-- corps du tableau -->
<tbody>
<tr><td>
La méga blinde de contenu dans cette cellule
</td></tr>
<tr><td>......</td></tr>
</tbody>
</table>
<!--
Voilà une ch'tite impression qui paraît professionnelle.
--> |
Partager