J'ai un problème avec un tableau qui apparait correctement quand je clique avec la souris mais qui disparait aussitôt que je la bouge.
Voici mon code :
Merci pour 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 <style type="text/css"> td.cell_head{ background-color:#CCC; border-top : 1px solid #EEE ; border-left : 1px solid #EEE ; border-bottom : 1px solid #AAA ; border-right : 1px solid #AAA ; padding-top : 1px; padding-bottom : 1px; padding-left : 2px; padding-right : 2px; width : 100px; } td.cell_body{ border-top : 1px solid #FFF ; border-left : 1px solid #FFF ; border-bottom : 1px solid #AAA ; border-right : 1px solid #AAA ; padding-top : 1px; padding-bottom : 1px; padding-left : 2px; padding-right : 2px; width : 50px; } tr.row_body { background-color:#EEE; height : 30px; } </style> <table cellspacing="0" > <tr class="row_body"> <td class="cell_head"></td> <td class="cell_body"></td> </tr> <tr class="row_body"> <td class="cell_head"></td> <td class="cell_body"></td> </tr> <tr class="row_body"> <td class="cell_head"></td> <td class="cell_body"></td> </tr> </table>
Partager