topfblume: a:hover ohne tatsächlichen Verweis (Infobox)

Beitrag lesen

moin ...

Auf meinen Seiten habe ich es so gelöst:

----------------------
html
----------------------
<dd><a href="#" class="info">LINK<span>INFOBOX</span></a></dd>

----------------------
css
----------------------
a.info
 {
 cursor: help;
 }
a.info:hover
 {
 border-style: none; //Für den IE//
 }
a.info span
 {
 display: none;
 }
a.info:hover span
 {
 display: block;
 top: 300px;
 right: 300px;
 position: absolute;
 }
----------------------
gruß ...