Tooltip css, basis for a hover flyout or callout for any element. No JQuery, no JavasScript - boring.
An ordinary link for comparison.
<div class="fly"> ELEMENT<br /> <span class="fly-out">TOOLTIP</span> </div>
body{/*this thing teaches to IE6 the hovering trick*/
behavior:url(ie-hover.htc);
}
.fly{
cursor:help;
}
.fly .fly-out{
display:none;
cursor:default;
}
.fly:hover .fly-out{
display:block;
}
.fly .fly-out{
background:#ffffe1;
border:1px solid #000;
font-family:arial;
font-size:11px;
line-height:1.3em;
padding:0 0.3em;
position:absolute;
width:auto;
}
On one occasion, FireFox required duplicatively an empty selector .fly .fly-out{}; above the regular .fly .fly-out{display:none;}