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 47 48
| <html>
<head>
<style>
table{
border-collapse: collapse;
}
td{
border:2px solid black;
}
th{
border:2px solid black;
}
td:hover{
color:white;
background-color: black;
}
.choix{
background-color: grey;
}
</style>
</head>
<body>
<table>
<tr>
<th>FILM</th>
<th>année de sortie</th>
<th>note</th>
</tr>
<tr class=choix>
<td>la ligne verte</td>
<td>1999</td>
<td>5</td>
</tr>
<tr>
<td colspan="2">retour vers le futur </td>
<td rowspan="2">4</td>
</tr>
<tr>
<td>Drive</td>
<td>2011</td>
</tr>
</table>
</body>
</html> |
Partager