Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 1d7e6dbb

Von Sven Schöling vor etwa 18 Jahren hinzugefügt

  • ID 1d7e6dbbbb3cc5cfbe5ebf4bcf75b10bab6d17a7
  • Vorgänger 60805cf2
  • Nachfolger d05eb259

Bugfix css-Menue. menuv3 ist jetzt voll funktionsfaehig in Firefox, Opera und IE6, einzig Konqueror weigert sich noch
(IE7 und Safari nicht getestet)

Unterschiede anzeigen:

css/menuv3.css
border:0;
}
/* IE6 spacing bug fix, <li>s without a bottom border get spaced to far */
/* IE6 spacing bug fix, <li>s without a bottom border get spaced to far
* correction: the bug will change the height of the parent element! this will also cause the whole menu to grow
* 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
* a bottom border, which just looks ugly
* the trick: color the bottom border with the same color as the bottom pixel of the background image - noone notices */
#menu ul li {
border:solid;
border-color:#ccd5e5;
border-width:0 0 1px 0;
}
#menu ul ul li {
border:solid;
border-width:0 0 1px 0;
}
/** IE6 event bug fix, a z-indexed layer without some kind of background will lose its events to the layer below */
#menu ul ul {
position:absolute;
z-index:500;
top:auto;
display:none;
/* IE6 event bug fix, a z-indexed layer without some kind of background will lose its events to the layer below */
background:#000;
}

Auch abrufbar als: Unified diff