[CSS] FF pb de bordure bas
Voici un code assez simple :
Code:
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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<style type="text/css">
table
{
height: 95%;
padding: 2px;
border-collapse: collapse;
}
td
{
border: 1px #00f solid;
}
</style>
</head>
<body>
<table>
<tr>
<td rowspan="2">
1
</td>
<td>
2
</td>
<td>
3
</td>
</tr>
<tr>
<td colspan="2" rowspan="3">
4
</td>
</tr>
<tr>
<td rowspan="2">
5
</td>
</tr>
</table>
</body>
</html> |
Sous firefox, la bordure du bas est invisible, comment ça se fait et comme puis-je résoudre ce pb?
Merci