Salut à tous,
Voilà mon problème.
Comme vous le constatez, dans ce tableau 2x2, la bordure supérieure de la deuxième cellule de la deuxième ligne s'affiche une ligne de pixels trop bas. Apparemment, le problème n'apparaît que sous Internet Explorer (en tout cas sous Firefox c'est nickel).
Vous avez une idée du pourquoi du comment ?
Code :
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
- "http://www.w3.org/TR/html4/strict.dtd">
- <html>
- <head>
- <style type="text/css">
- table {
- border-collapse: collapse;
- margin: auto;
- width: 75%;
- }
- th {
- border-top: solid black;
- border-left: solid black;
- border-right: solid black;
- border-top-width: 1px;
- border-left-width: 1px;
- border-right-width: 1px;
- }
- .colgauche {
- border-left: solid black;
- border-right: solid black;
- border-bottom: solid black;
- border-left-width: 1px;
- border-right-width: 1px;
- border-bottom-width: 1px;
- width: 33%;
- }
- .coldroite {
- border-top: solid black;
- border-top-width: 1px;
- }
- </style>
- </head>
- <body>
- <table>
- <th colspan="2"> <br> </th>
- <tr>
- <td class="colgauche"> <br> </td>
- <td class="coldroite"> <br> </td>
- </tr>
- </table>
- </body>
- </html>
|
Message édité par khalys le 23-04-2006 à 01:06:47