Bonsoir,
qui voudrais bien m'expliquer comment on utilise le colspan et le rowspan car j'suis arrivé à ce point là

Je voudrais faire un tableau dans ce style
MON SUPER TABLEAU

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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
 
<table class="model2">
	<thead>
		<tr>
			<th  colspan="5">
				<b>TITRE 1</b> 
			</th>
		<tr>
		<tr>
			<th>COLONE 1</th>
			<th>COLONE 2</th>
			<th>COLONE 3</th>
			<th>COLONE 4</th>
		</tr>
	</thead>
		<tr>
			<td >
			</td>
			<td >
			</td>
			<td >
			</td>
			<td >
			</td>
		</tr>
	<thead>
		<tr>
			<th colspan="2">COLONE 5</th>
			<th>COLONE 6</th>
			<th>COLONE 7</th>
		</tr>
	</thead>
		<tr>
			<td colspan="2">
			</td>
			<td >
			</td>
			<td >
			</td>
		</tr>
	<thead>
		<tr>
			<th>COLONE 8</th>
			<th>COLONE 9</th>
			<th colspan="2">COLONE 10</th>
		</tr>
	</thead>
		<tr>
			<td >
			</td>
			<td >
			</td>
			<td colspan="2">
			</td>
		</tr>
		<tr>
			<td colspan="4">
			</td>
		</tr>
	</logic:equal>	
	<thead>
		<tr>
			<th>COLONE 11</th>
			<th>COLONE 12</th>
			<th colspan="2">COLONE 13</th>
		</tr>
	</thead>
		<tr>
			<td>
			</td>
			<td>
			</td>
			<td>
			</td>
			<td colspan="2">
			</td>
		</tr>		
</table>