kombi: a:visited in IE

Beitrag lesen

Ich habe diesen css-tooltip gebastelt und kann nicht herausfinden, warum a:visited in IE nicht gezeigt wird (s.u.). Mag vielleicht jemand mal schauen?

Vielen Dank und viele Grüße,
Konrad

<style type="text/css">
.box1 a { margin: 0 0 0 10px; text-decoration:none; position:relative; z-index:24; font-family: Verdana, Arial, Helvetica, sans-serif; font-size:10px; font-weight:bold; }
.box1 a span { display: none; }
.box1 a:visited { text-decoration: none; text-indent: 0; }
.box1 a:hover { text-decoration: underline; text-indent: 0; z-index: 26; }
.box1 a:hover span { display: block; height: auto; position: absolute; top:31px; left: 15px; }
.box1 span { font-weight:normal; text-align:left; color:#000; width:250px; padding: 15px; border-top:1px solid #fff; border-left:1px solid #fff; border-bottom:1px solid #000; border-right:1px solid #000; background-color:#ccc; background-repeat:repeat-x; }
</style>

<div class="box1">
<a href="http://www.google.com" target="new">foo<span>foo</span></a>
<br />
<a href="http://www.yahoo.com" target="new">bar<span>bar</span></a>
<br />
<a href="http://www.yahoo.com" target="new">foobar<span>foobar</span></a>
</div>