Bonjour,
j'ai un problème sur un tableau en HTML.
En effet, je fais un tableau, et à l'intèrieur de ce tableau, il y a un autre tableau. Mais je ne peux pas cliquer sur les boutons que contient le deuxième tableau.
Pour comprendre un peu mieux :
Merci de votre aide
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 <P align="left"> <table> <tr> <td> <div id="main"><a name="top"></a> <div class="libelle_cat"> <div class="intitule">Modes</div> </div> <table class="table_cat"> <tbody> <tr> <td> <form name="rat" method="post" action="Al.html"> <div id="boutons"> <button type="submit" name="ctr">Cont</button> </div> </form> </td> <td> <form name="vi" method="post" action="Accil.html"> <div id="boutons"> <button type="submit" name="vic">Vée</button> </div> </form> </td> <td> <form name="gr" method="post" action="A.html"> <div id="boutons"> <button type="submit" name="gr">Gr</button> </div> </form> </td> </tr> </tbody> </table> </div> </div> </td> </p> <td>                                                                                                                                   </td> <td> <br> <br> <br> <form name="valid" method="post" action="Acc.html"> <div id="boutons"> <P align ="right"> <button type="submit" name="val">Valider</button> </p> </div> </form> </td> <td> <br> <br> <br> <form name="annul" method="post" action="Ac.html"> <div id="boutons"> <P align ="right"> <button type="submit" name="an">Annuler</button> </p> </div> </form> </td> </tr> </table>
Partager