everything is in the title: j'ai trois tableaux que je veux mettre cote a cote et je veux absolument que ce soit 3 tableaux differents et pas 1 seul tableau divisé en 3 (ou une bricole du style) (pour des raisons pratiques). Or quand je crée mes trois tableaux ils se mettent l'un en dessous de l'autre.
Merci d'avance de votre aide![]()
voici 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 <table width="30%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="330" bgcolor="#EEEEEE"><div align="center" class="Title1">Information et présentations</div></td> </tr> <tr> <td><img src="../images/fleche.gif" width="9" height="9"> <a href="">lien1</a></td> </tr> <tr> <td><img src="../images/fleche.gif" width="9" height="9"> <a href="#">lien2</a></td> </tr> <tr> <td><img src="../images/fleche.gif" width="9" height="9"> <a href="#">lien3</a></td> </tr> <tr> <td><img src="../images/fleche.gif" width="9" height="9"> <a href="#">lien4</a></td> </tr> <tr> <td><img src="../images/fleche.gif" width="9" height="9"> <a href="#">lien5</a></td> </tr> </table> <table width="30%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="330" bgcolor="#EEEEEE"><div align="center" class="Title1">Concurrence</div></td> </tr> <tr> <td><img src="../images/fleche.gif" width="9" height="9"> <a href="">lien1</a></td> </tr> <tr> <td><img src="../images/fleche.gif" width="9" height="9"> <a href="#">lien2</a></td> </tr> <tr> <td><img src="../images/fleche.gif" width="9" height="9"> <a href="#">lien3</a></td> </tr> <tr> <td><img src="../images/fleche.gif" width="9" height="9"> <a href="#">lien4</a></td> </tr> <tr> <td><img src="../images/fleche.gif" width="9" height="9"> <a href="#">lien5</a></td> </tr> </table> <table width="30%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="330" bgcolor="#EEEEEE"><div align="center" class="Title1">Information supplémentaire</div></td> </tr> <tr> <td><img src="../images/fleche.gif" width="9" height="9"> <a href="">lien1</a></td> </tr> <tr> <td><img src="../images/fleche.gif" width="9" height="9"> <a href="#">lien2</a></td> </tr> <tr> <td><img src="../images/fleche.gif" width="9" height="9"> <a href="#">lien3</a></td> </tr> <tr> <td><img src="../images/fleche.gif" width="9" height="9"> <a href="#">lien4</a></td> </tr> <tr> <td><img src="../images/fleche.gif" width="9" height="9"> <a href="#">lien5</a></td> </tr> </table>
Partager