Jürgen H.: CSS Probleme mit IE

Beitrag lesen

Hallo,

ich bin gerade an einem Problem am verzweifeln. Die Schrift, die standardmäßig weiß ist, soll hier schwarz dargstellt werden. Das funktioniert auch so im Firefox, nur der IE bringt normalen Text weiterhin weiß (der Link ist schwarz). Außerdem wird er hier auch nicht mittig angezeigt (auch das klappt mit Firefox). Könnte mir mal jemand erklären, was ich hier falsch mache?

HTML:
<div id="menuezeile">
 <span class="dunkel">
   Link: <a class="dunkel" href="{$link}">{$name}</a>
 </span>
</div>

CSS:
#menuezeile{
 padding: 2px 0px 2px 0px;
 color: #000000;
 background-color: #cccccc;
 border-top: 1px solid #000000;
 border-bottom: 1px solid #000000;
 text-align: center;
 vertical-align: middle;
}
body {
 font-family: Arial, Helvetica, sans-serif;
 font-size: 11px;
 color: #ffffff;
 background-color: #333333;
 background-image: url(images/bg.gif);
 background-repeat: repeat;
}
a {
 font-family: Arial, Helvetica, sans-serif;
 font-size: 11px;
 font-weight: bold;
 text-decoration: none;
 color: #ffffff;
}
.dunkel{
 color: #000000;
}