There is another way to do it, but IE doesn't support the popup (since IE
only works with :hover on anchors/hyperlinks - maybe IE 7 works; I don't
know), so only the hyperlink would work.  It would be something like this:

<div class="pop"><div class="popup">popup content</div><a
href="...">?</a></div>

.pop {
     position:relative;
     background-image:url(q.gif);
     height:17px;
     width:16px;
}
.pop .popup {
     display:none;
}
.pop:hover .popup {
     display:block;
     position:absolute;
     top:15px;
     left:15px;
     background-color:white;
     border:1px solid black;
}

Andy :-)
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to