Revision 1d7e6dbb
Von Sven Schöling vor fast 18 Jahren hinzugefügt
css/menuv3.css | ||
---|---|---|
65 | 65 |
border:0; |
66 | 66 |
} |
67 | 67 |
|
68 |
/* IE6 spacing bug fix, <li>s without a bottom border get spaced to far */ |
|
68 |
/* IE6 spacing bug fix, <li>s without a bottom border get spaced to far |
|
69 |
* correction: the bug will change the height of the parent element! this will also cause the whole menu to grow |
|
70 |
* so the only method to get this pile of crap going is to add a bottom border to the <li>s, where the enclosing <ul> already has |
|
71 |
* a bottom border, which just looks ugly |
|
72 |
* the trick: color the bottom border with the same color as the bottom pixel of the background image - noone notices */ |
|
73 |
#menu ul li { |
|
74 |
border:solid; |
|
75 |
border-color:#ccd5e5; |
|
76 |
border-width:0 0 1px 0; |
|
77 |
} |
|
69 | 78 |
|
70 | 79 |
#menu ul ul li { |
71 | 80 |
border:solid; |
72 | 81 |
border-width:0 0 1px 0; |
73 | 82 |
} |
74 | 83 |
|
84 |
/** IE6 event bug fix, a z-indexed layer without some kind of background will lose its events to the layer below */ |
|
75 | 85 |
#menu ul ul { |
76 | 86 |
position:absolute; |
77 | 87 |
z-index:500; |
78 | 88 |
top:auto; |
79 | 89 |
display:none; |
80 |
/* IE6 event bug fix, a z-indexed layer without some kind of background will lose its events to the layer below */ |
|
81 | 90 |
background:#000; |
82 | 91 |
} |
83 | 92 |
|
Auch abrufbar als: Unified diff
Bugfix css-Menue. menuv3 ist jetzt voll funktionsfaehig in Firefox, Opera und IE6, einzig Konqueror weigert sich noch
(IE7 und Safari nicht getestet)