bonsoir
je ne trouve pas de solution pour faire un simple tableau avec une bordure autours des tr sauf sur la première ligne (celle avec les th) qui fonctionnerait sous ie
voila le code :
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>tableau</title>
<style>
        table.telechargement {
                border-collapse:collapse;
                border:1px solid #000;
        }
        table.telechargement td{
                border-bottom:1px solid #000;
        }
        
</style>
</head>
 
<body>
 
<table class="telechargement">
	<tr>
		<th>titre 1</th>
		<th>titre 2</th>
		<th>titre 3</th>
		<th>titre 4</th>
	</tr>
	<tr>
		<td>aaaaaaaaaaaa</td>
		<td>bbbbbbbbbb</td>
		<td>ccccccccccccc</td>
		<td>ddddddddddd</td>
	</tr>
	<tr>
		<td>aaaaaaaaaaaa</td>
		<td>bbbbbbbbbb</td>
		<td>ccccccccccccc</td>
		<td>ddddddddddd</td>
	</tr>
</table>
</body>
</html>
plz help