Bonjour,
voila j ai 3 tableaux dans un tableau et je souhaite les positionner de manière a ce que les trois tableaux soit cote a cote et non pas en dessous de l autre mais je ne connais la syntaxe qui pourrait m'aider mon problème concerne le tableau 2,3 et 4
voici mon code css
merci à vousCode:
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 body { background-color: white; font-family: tahoma,arial,helvetica,sans-serif; color: #000000; font-size: 8pt; } .tableau1 { border: 1px solid #000000; width: 750px; height: 600px; margin: auto; background-color: #f9a35b; } .tableau2 { border: 1px solid #000000; width: 210px; height: 400px; background-color: #f9a35b; margin-left: 15px; } .tableau3 { border: 1px solid #000000; width: 210px; height: 400px; background-color: #f9a35b; margin-left: auto; margin-right: auto; } .tableau4 { border: 1px solid #000000; width: 210px; height: 400px; background-color: #f9a35b; margin-left: 523px; }

