Hallo
Kann mir bitte jemand sagen, warum dieses Script nur im IE läuft?
Es ist sehr wichtig dass es in allen Browser läuft. Bitte um Antwort.
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.