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
|
<!doctype html>
<html lang="fr-FR">
<head>
<meta charset="UTF-8" />
<title>test tableau</title>
<style type="text/css">
th, td {width: 25%; border: thin solid black;}
.align-droit {text-align: right;}
.alachinoise {padding-left: 90%; text-align: center;}
</style>
</head>
<body>
<table>
<tr>
<th>Les forumeurs de developpez.net ont des idées bizarres.</th>
<td>Du texte sans forme définie.</td>
<td class="align-droit">Du texte aligné à droite.</td>
<td><div class="alachinoise">D<br />u<br /> <br />t<br />e<br />x<br />t<br />e<br /> <br />à<br /> <br />l<br />a<br /> <br />c<br />h<br />i<br />n<br />o<br />i<br />s<br />e</div></td>
</tr>
</table>
</body>
</html> |
Partager