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
| <!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Essaisde style elements table</title>
<style>
*{ margin:0 0 0 0; padding:0 0 0 0;font-size: 16px;} /* selection s'appliquant à tous les éléments */
td { /* selection par elements td*/
font-size: 0,75em;
}
td a { /* selection par elements 'a' enfant de td*/
color:red;
font-size: 0.625em;
}
.titre { /* selection par l'ID */
font-size: 0,875em;
font-weight: bold;
color:blue;
}
</style>
</head>
<body>
<table width="620">
<caption>La légende du tableau</caption>
<tr>
<td width="60"><img src="geotrouvepas.gif"/></td>
<td>attente texte</td>
<td width="60">01/09/2018</td>
</tr>
<tr>
<td>attente texte</td>
<td width="500" class="titre">ICI le titre</td>
<td>attente texte</td>
</tr>
<tr>
<td colspan="2" width="60"><a href="liste_jour.php">Lire la suite....</a></td>
</tr>
</table>
</body>
</html> |
Partager