Korrektur für IE funkt nicht
Hallo,
ich habe mir auf selfhtml die CSS Navigationsleiste ausprobiert.
Nur stellt der IE die Navigationsleiste so dar wie ich das grade nicht möchte. Kann mir jemand das mal kurz erklären wie die Korrektur funzt und vielleciht sagen, wie der IE die Leiste so anzeigt wie ich möchte?
Vielen Dank im Voraus.
mfg Kurschi
Hallo,
ich habe mir auf selfhtml die CSS Navigationsleiste ausprobiert.
Nur stellt der IE die Navigationsleiste so dar wie ich das grade nicht möchte. Kann mir jemand das mal kurz erklären wie die Korrektur funzt und vielleciht sagen, wie der IE die Leiste so anzeigt wie ich möchte?
Code:
ul#Navigation {
width: 100px; /*Breite der Menubar*/
margin: 0;
padding: 3px; /*Rand*/
border: 0px solid black;
background-color: #4BD11F;
}
* html ul#Navigation { /* Korrekturen fuer IE 5.x */
width: 116px;
w\idth: 100px;
padding-left: 0;
padd\ing-left: 3px;
}
ul#Navigation li {
list-style: none;
margin: 0.4em; padding: 0;
}
ul#Navigation a {
display:block;
padding: 0.2em;
text-decoration: none;
font-weight: bold;
border: 1px solid black;
border-left-color: white;
border-top-color: white;
color: #FF0000;
background-color: #4BD11F; /*Farbe Buttons Normal*/
}
* html ul#Navigation a { /* Breitenangaben nur fuer IE */
width: 100%;
w\idth: 100px;
}
ul#Navigation a:hover {
border-color: white;
border-left-color: black;
border-top-color: black;
color: #4BD11F;
background-color: #FF0000;
}
.backNavi {background-color:#4BD11F }
Vielen Dank im Voraus.
mfg Kurschi