"font-weight: bold" verschiebt DIV im IE
Christoph
- browser
Hallo!
Ich habe ein dreispaltiges Layout, in dessen linkem DIV sich ein Menü befindet. Die Menü-Punkte sind in einer Liste organisiert, mit folgendem CSS will ich die entsprechenden Links hervorheben:
.normal a:link {
color: black;
text-decoration: none;
}
.normal a:visited {
color: black;
text-decoration: none;
}
#spalte_links a:hover {
color: #009136;
text-decoration: underline;
font-weight: bold;
}
#spalte_links a:active {
font-weight: bold;
}
.current a {
color: #009136;
font-weight: bold;
}
Sobald nun aber "font-weight: bold" greift, rutscht das gesamte DIV etwa 20px nach rechts. Das Problem tritt jedoch ausschließlich im Internet Explorer auf.
Meine Suche zur Problemlösung blieb ohne erfolg, deshalb würde ich mich über Hilfe freuen.
Danke
Christoph