Øv :( det virker i alle browsere undtagen IE9
Her er min kode;
<html>
<head>
<style>
*{ padding:0px; margin:0px;}
.mainclass {
background-image:url(images/testboxpic.png);
width:250px;
height:150px;
z-index:1;
margin:0 auto;
border-radius: 15px;
-moz-border-radius: 15px;
}
.onhover {
width:250px;
height:150px;
z-index:2;
}
.onhover:hover {
background-color: #0066FF;
opacity:0.2;
filter:alpha(opacity=20); /* For IE8 and earlier */
-moz-opacity:0.2;
-khtml-opacity: 0.2;
border-radius: 15px;
-moz-border-radius: 15px;
}
.onhover:hover + .tekstdiv {
display:block;
}
.tekstdiv {
width:250px;
height:150px;
margin-top:-140px;
z-index:3;
font-size:18px;
display:none;
color:#000;
text-align:center;
text-decoration:none;
font-family:Arial, Helvetica, sans-serif;
}
a{ text-decoration:none;}
</style>
</head>
<body>
<a href="
http://www.google.dk"> <div class="mainclass">
<div class="onhover">
</div><!--onhover-->
<div class="tekstdiv">
<p class="infotxt">informativ tekst om servicen</p>
</div><!--tekstdiv-->
</div><!--mainclass-->
</a>
</body>
</html>
Eller skal jeg starte et nyt spørgsmål måske ?