Forum Moderators: not2easy
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css">
div.box {
z-index:0;
height:100px;
width:100px;
border: 1px solid black;
margin: 5px;
}
div.static {
position: absolute;
height:100px;
width:100px;
}
a.exp {
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-transition: all 0.5s ease-in-ou
display:block;
z-index:1;
height:100px;
width:100px;
border: 1px solid green;
opacity: 0;
position: absolute;
}
a.exp:hover {
display:block;
opacity: 1;
height:400px;
width:400px;
position: fixed;
left:250px;
top:200px;
}
</style>
</head>
<body>
<div class="box">
<a style="background:yellow;" class="exp" href="">s</a>
<div style="background:yellow;" class="static"></div>
</div>
<div class="box">
<a style="background:red;" class="exp" href="">s</a>
<div style="background:red;" class="static"></div>
</div>
<div class="box">
<a style="background:blue;" class="exp" href="">s</a>
<div style="background:blue;" class="static"></div>
</div>
</body>
</html