Bonjour,

J'applique mon css sur un menu déroulant que j'écris en dur sous forme de <ul><li><ul><li></li></ul></li></ul>.
J'aimerais savoir, si jamais je met ce menu dans une div si mon style peut s'appliquer alors que dans cette div, et si c'est le cas, comment le faire sur le CSS.

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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/* menu2 principal*/
#menu2
{
    width: 450px;
    margin-top: 0px;
    margin-left: 0px;
    padding: 10px 0 0 0;
    list-style: none;  
    background: #4E69AA;
 
    -moz-border-radius: 50px;
    border-radius: 50px;
    -moz-box-shadow: 0 2px 1px #C2C2C2;
    -webkit-box-shadow: 0 2px 1px #C2C2C2;
    box-shadow: 0 2px 1px #C2C2C2;
}
 
#menu2 li
{
    float: left;
    padding: 0 0 10px 0;
    position: relative;
    line-height: 0;
}
 
#menu2 a 
{
    float: left;
    height: 25px;
    padding: 0 25px;
    color: white;
    text-transform: uppercase;
    font: bold 12px/25px Arial, Helvetica;
    text-decoration: none;
    text-shadow: 0 1px 0 #000;
}
 
#menu2 li:hover > a
{
    color: white;
}
 
*html #menu2 li a:hover /* IE6 */
{
    color: white;
}
 
#menu2 li:hover > ul
{
    display: block;
}
 
/* Sous-menu2s */
#menu2 ul
{
    width:220px;
    list-style: none;
    margin: 0;
    padding: 0;    
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    z-index: 99999;    
    background: #4E69AA;
    -moz-box-shadow: 0 0 2px rgba(255,255,255,.5);
    -webkit-box-shadow: 0 0 2px rgba(255,255,255,.5);
    box-shadow: 0 0 2px rgba(255,255,255,.5);   
    -moz-border-radius: 5px;
    border-radius: 5px;
}
 
#menu2 ul ul
{
  top: 0;
  left: 220px;
}
 
#menu2 ul li
{
    float: none;
    margin: 0;
    padding: 0;
    display: block;  
    -moz-box-shadow: 0 1px 0 #ffffff, 0 2px 0 #777777;
    -webkit-box-shadow: 0 1px 0 #ffffff, 0 2px 0 #777777;
    box-shadow: 0 1px 0 #ffffff, 0 2px 0 #777777;
}
 
#menu2 ul li:last-child
{   
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;    
}
 
#menu2 ul a
{    
    padding: 10px;
    height: 10px;
    width: auto;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
}
 
*html #menu2 ul a /* IE6 */
{    
    height: 10px;
}
 
*:first-child+html #menu2 ul a /* IE7 */
{    
    height: 10px;
}
 
#menu2 ul a:hover
{
    background: #A3B600;
    background: -moz-linear-gradient(#A3B600,  #A3B600);    
    background: -webkit-gradient(linear, left top, left bottom, from(#A3B600), to(#A3B600));
    background: -webkit-linear-gradient(#A3B600,  #A3B600);
    background: -o-linear-gradient(#A3B600,  #A3B600);
    background: -ms-linear-gradient(#A3B600,  #A3B600);
    background: linear-gradient(#A3B600,  #A3B600);
}
 
#menu2 ul li:first-child > a
{
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
 
#menu2 ul li:first-child > a:after
{
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #fff;
}
 
#menu2 ul ul li:first-child a:after
{
    left: -8px;
    top: 12px;
    width: 0;
    height: 0;
    border-left: 0; 
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-right: 8px solid #fff;
}
 
#menu2 ul li:first-child a:hover:after
{
    border-bottom-color: #fff; 
}
 
#menu2 ul ul li:first-child a:hover:after
{
    border-right-color: #fff; 
    border-bottom-color: transparent;   
}
 
 
#menu2 ul li:last-child > a
{
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}
 
/* Nettoyer les éléments flottant */
#menu2:after 
{
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
 
* html #menu2             { zoom: 1; } /* IE6 */
*:first-child+html #menu2 { zoom: 1; } /* IE7 */
Cordialement,