Forum Moderators: not2easy
<style type="text/css" media="screen">
#wrap { /* position this element relative so that the absolute spans know where to take their position from */
position: relative;
background: #ccc;
width: 500px;
}
.popup span {
position: absolute;
top: 10px;
right: 10px;
/* left: -9999px; uncomment to hide this at start if required */
width:200px;
height:150px;
background: #d00;
}
.popup:hover span {
position: absolute;
z-index: 1; /* to make sure the hovered span is always on top */
left: auto; /* to unhide it */
background:#dad;
}
</style>
</head>
<body>
<div id="wrap">
<p><a class="popup" href="#">a link here <span></span></a></p>
<h2>header</h2>
<p>text.</p>
<p><a class="popup" href="#">View same link here <span></span></a></p>
</div>
</body>