Karin: CSS PopUp

Beitrag lesen

Hi,

Du solltest mal den clientseitigen Quelltext posten, folgendes funktioniert bei mir (FF2) tadellos:

  
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"  
        "http://www.w3.org/TR/html4/strict.dtd">  
<html lang="de">  
<head>  
<title>Infobox</title>  
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">  
<style type="text/css">  
<!--  
#box {  
position:absolute; top:450px; left:450px;  
z-index:3;}  
  
#box a {  
color:#ffffff;  
background:#33CC33;  
font:bold 16px verdana, sans-serif;  
text-decoration:none;  
display:block;  
padding:5px;  
border:1px solid black;}  
  
#box a:hover {  
color:black;  
background:#ddd8b7;  
width:400px;}  
  
#box a span {display:none;}  
  
#box a:hover span {  
color:black;  
background:#ffffff;  
font:normal 16px courier, sans-serif;  
border:1px solid black;  
display:block;  
padding:10px;}  
-->  
</style>  
</head>  
<body>  
  
<div id="box"><a href="bla.php">INFOBOX<span>schubiduh</span></a></div>  
  
</body>  
</html>  

LG