Bonsoir,
j'ai une page html qui affiche un menu : le look est bon sous IE mais pas beau sous FF : l'adresse de la page et le code :Quelqu'un saurait-il arranger ça ?
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101 <style type="text/css"> </*MENU */ .menu { height : 40px; width : 800px; } .intermenu { width : 5px; } .menuItem { width: 100px; height : 40px; vertical-align:bottom; } .menuItem a { evenium: cellproperties; font-size: 14px; width: 100px; //width: 196px; padding-left: 8px; font-family : Arial, Verdana, serif; color: #626469; text-decoration: none; text-align: left; display: block; background : url('menu.png') no-repeat; line-height: 40px; } .menuItem a:hover { evenium: cellproperties; display: block; font-size: 14px; width: 100px; //width: 196px; font-family : Arial, Verdana, serif; color: #FFFFFF; vertical-align:top; text-decoration: none; text-align: left; background : url('menuselect.png') no-repeat; line-height: 40px; } </style> <table cellpadding="0" cellspacing="0"> <tbody> <tr> <th class="menuItem"><a href="" target="frmMain">Home</a></th> <th class="menuItem"><a href="" target="frmMain">Registration</a></th> <th class="menuItem"><a href="" target="frmMain">Practical informations</a></th> <th class="menuItem"><a href="" target="frmMain">List of participants </a></th> <th class="menuItem"><a href="" target="frmMain">Registration suppression</a></th> </tr> <tr> <th class="menuItem"><a href="" target="frmMain">Contact us</a></th> <th class="menuItem"><a href="" target="frmMain">Agenda</a></th> <th class="menuItem" colspan="2"><a href="" target="frmMain">Detailed List of participants </a></th> <th class="intermenu"> <br> </th> <th class="intermenu"> <br> </th> </tr> </tbody> </table> <!-- deb --> <table> <tbody> <tr> <!-- deb --> <td class="bandeauGeneral" colspan="2"> <table cellpadding="0" cellspacing="0"> <tbody> <tr> <th class="bandeau" colspan="2"> <table border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top;"><img alt="" src="bandeau.jpg" height="211" width="1000"></td> </tr> </tbody> </table> </th> </tr> </tbody> </table> </td> </tr> </tbody> </table>
Partager