bonjour à tous
j'aimerai avoir 6 tableaux (HTML) sur 2 lignes donc 3 tableaux sur chaque ligne
quelqu'un saurait il comment faire?
merci d'avance
bonjour à tous
j'aimerai avoir 6 tableaux (HTML) sur 2 lignes donc 3 tableaux sur chaque ligne
quelqu'un saurait il comment faire?
merci d'avance
6 tableaux sur 2 lignes ? Oo
C'est quoi une "ligne" pour toi ? <tr></tr> ? ce sont les seuls lignes que je vois (tr = Table Row) mais ça m'avance pas plus![]()
arf
il me faudrait 3 tableaux alignés
et en dessous, 3 autres tableaux
soit 3 <table></table> sur une même rangée
et la rangéé du dessous 3 <table></table>
Voici une structure qui fonctionne a l'aide de tableaux html :
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<table> <tr> <td valign="top"> <table> <tr> <td>tableau 1</td> </tr> </table> </td> <td valign="top"> <table> <tr> <td>tableau 2</td> </tr> </table> </td> <td valign="top"> <table> <tr> <td>tableau 3</td> </tr> </table> </td> </tr> <tr> <td valign="top"> <table> <tr> <td>tableau 4</td> </tr> </table> </td> <td valign="top"> <table> <tr> <td>tableau 5</td> </tr> </table> </td> <td valign="top"> <table> <tr> <td>tableau 6</td> </tr> </table> </td> </tr> </table>
c'est parfait ! merci!
j'ai une derniere question. estt ce qu'il est possible d'avoir un espace plus grand entre chaque tableau?
merci encore








Tu peux utiliser la balise <br> même plusieurs fois entre les deux tableaux
ou bien tu peux aussi utiliser un tableau qui a comme border=0 au lieu de <br> si tu veux un espacement vertical.
Partager