Bonjour,

Voila j'ai une table a 100% qui contient 2 sous table (50-50%) et après il y a une autre table (standard) avec aussi 100% et je met un br entre les deux table principale.
Et j'aimerais bien que pour la 2ième table elle soit vraiment a la ligne!

explic:

tableau 100%
-----------------------------------------
tab 50% | tab 50%
contenu | pas de contenu
contenu | mon tableau 100% viens ici (avec 100%)
contenu | " "
--------------------------------------------

Et j'aimerais qu'il vienne ici mon tableau 100%

Mon 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
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
79
<table width="100%">
<tbody>
<tr>
 
<table width="50%" align="left" border="1">
<thead>
<tr>
<th>Zei</th>
<th>Ref</th>
<th colspan="1">TB-Nr</th>
<th>TB-Datum</th>
<th>SHAB</th>
<th>SHAB-Datum</th>
<th>Seite</th>
</tr>
</thead>
<tbody>
<tr>
<th>ZB</th>
<th>1</th>
<th>23326</th>
<th>13.12.1991</th>
<th>
<th></th>
<th>249</th>
</th>
<th>24.12.1991</th>
<th>5532</th>
</tr>
<tr>
<th>HG</th>
<th>2</th>
<th>17975</th>
<th>31.08.1994</th>
<th>
<th></th>
<th>173</th>
</th>
<th>07.09.1994</th>
<th>4975</th>
</tr>
</tbody>
</table>
 
<table width="50%" border="1">
<thead>
<tr>
<th>Zei</th>
<th>Ref</th>
<th>TB-Nr</th>
<th></th>
<th>TB-Datum</th>
<th>SHAB</th>
<th>SHAB-Datum</th>
<th>Seite</th>
</tr>
</thead>
<tbody></tbody>
</table>
 
</tr>
</tbody>
</table>
 
<br>
 
<table width="100%" border="1">
<thead>
<tr>
<th width="5%">Ei</th>
<th width="5%">Ae</th>
<th width="5%"></th>
<th>Personalangaben</th>
<th>Funktion</th>
<th>Zeichnungsart</th>
</tr>
</thead>
<tbody>
<tr>

Moi perso j'y comprend rien!!!

Déjà un grand merci pour votre aide car la je vais me...

Thierry