Thomas J.S.: vierte Zeile rutscht

Beitrag lesen

Hallo Dave,

Mozilla. IE klappt seltsamerweise. Der Aufbau:

Also mit dem IE 6.0 sehe ich nur die Verweise und keine "Info Texte".
Mit mozilla 1.2.1 sehe ich alles richtig und es wird keine Zeile anders dargestellt als die anderen.
(Im Opera 6.04 sehe ich auch keine Infotext.)

Grüße
Thomas

Der code den ich Probiert habe:

<html>
<head>
 <title>Untitled</title>
 <style type="text/css">
  #menbox a:link,#menbox a:visited { color:#5588bb; text-decoration:underline; line-height:1.2em; font:bold 1em Arial,sans-serif; }
  #menbox a:hover,#menbox a:active { text-decoration:none; padding-left:0px; color:#003366; line-height:1.2em; }

.menu { position:absolute; top:55px; left:0px; font-family:Arial,Verdana,sans-serif; font-size:0.8em; color:#000000; padding-left:10px; width:100px; }
  .infbox { position:absolute; left:0px; top:180px; height:100px; width:150px; border:1px solid #000000; border-left-width:0px; z-index:1; }
  #box a .info { display:none; z-index:2; }
  #menbox { position:absolute; padding-left:0px; left:0px; top:130px; z-index:3; width:125px; height:72px; padding:10px; padding-left:10px; font-weight:bold; background-color:#ffffff; }
  #box a:hover .info { display:block; position:absolute; color:#000000; padding-left:0px; left:0px; top:130px; z-index:4; width:125px; height:72px; padding:10px; padding-left:10px; background-color:#ffffff; }
 </style>
</head>

<body>
<div id="text">
<!-- Hier wird mit PHP das Menu included, sieht dann so aus: -->
<div class="menu">
<div id="box">
<a href="ziel">Verweisname <span class="info">Infotext 1<br /><!-- und das viermal --></span></a>
<a href="ziel">Verweisname <span class="info">Infotext 2<br /><!-- und das viermal --></span></a>
<a href="ziel">Verweisname <span class="info">Infotext 3<br /><!-- und das viermal --></span></a>
<a href="ziel">Verweisname <span class="info">Infotext 4<br /><!-- und das viermal --></span></a>
</span></a>
</div>
</div>
...anderer Text...
</div>
</body>
</html>