• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Script läuft nur im IE

Status
Für weitere Antworten geschlossen.

Raider

Neues Mitglied
Hallo

Kann mir bitte jemand sagen, warum dieses Script nur im IE läuft?

Code:
<html>
<head>
<style type=text/css>
a.info{ 
	width: 10px;
    position:relative; 
    z-index:1;
    color:#36c;
    cursor: help;
} 

a.info:hover{
	background-color:#ccc; 
	z-index:2; 
	text-decoration: none; 
} 

a.info span{ display: none; } 

a.info:hover span{ 
    display:block; 
    position:absolute; 
    top: -6em; left: -6em; width: 30em; 
    border:2px solid #000; 
    background-color:#800; 
    color:#fff; 
	text-align: center;
	padding-right: 10px;	
	padding-bottom: 10px;
	padding-top: 10px;		
	padding-left: 10px;
}
</style>
</head>
<body>

<br><br><br><br><br><br><br>
<center>
<a class="info" href=#>Test<span>Info-Text</span></a>
<br>
</center>

</body>
</html>

Es ist sehr wichtig dass es in allen Browser läuft. Bitte um Antwort.
 
eine kleine anmerkung:

padding:10px; bewirkt, wofür du 4 befehle nutzt ....

sowas habe ich nochnie gesehen:
a.info span, im normalfall benutzt man den a tag im span, und nicht andersrum, evtl könnte dies auch probleme geben, kann aber auch valide sein, nur ist es mir eben aufgefallen.

a tags nutze ich generell nur für links, es kommt nicht häufig vor, dass man links kunterbunt darstellt.

ein span tag kann auch nicht jegliche veränderung bewirken, im gegensatz zum div.
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben