bonsoir,
j'essaye en vain de créer un ligne de 1px en bas de chaque ligne de mon tableau
voici mon dernier code testé
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
#bordure_bas tr
{
	border-top-width: 1px;
     border-bottom-style: solid;
	 border-bottom-color:#000000;
 
}
</style>
<table width="500"  id="bordure_bas">
  <tr>
    <td>jhj</td>
    <td>hjhg</td>
  </tr>
  <tr>
    <td>hjhg</td>
    <td>jhjh</td>
  </tr>
  <tr>
    <td>hjhg</td>
    <td>jhjhg</td>
  </tr>
</table>
merci d'avance pour votre aide
bonne soirée
Ludovic