| raphpell on Apr 28, 2006 at 5:07:53 AM I dont understand the thing you want to create but we can display a DIV with the over event of links.
<STYLE> a.popup:visited { color: #000; text-decoration:none; border-bottom: 0em solid #000; } a.popup { color: #000; text-decoration:none; border-bottom: 0em solid #000; position: relative; left:0px; font-weight: bold; } a.popup SPAN { display: none; } a.popup:hover { color: #000; cursor: default; border-bottom: 0.2em solid lime; } a.popup:hover .popbox { background: red; display: block; position: absolute; z-index: 10000; top: 0em; left: 0em; padding: 1.5em; } </STYLE>
<a class="popup" href="#ceci" name="ceci"> <SPAN class="popbox">Some text</SPAN> Label </a>
It works without JavaScript !
|