一个简单的CSS提示效果(Easy CSS Tooltips)
Posted in February 9, 2010 at 23:11
If you need a really simple and basic Crossbrowser Tooltip on your website, this <1kb tooltip CSS script might be the one for you.
DEMO
CSS:
a:hover {
background:#ffffff;
text-decoration:none;
} /*BG color is a must for IE6*/
a.tooltip span {
display:none;
padding:2px 3px;
margin-left:8px;
width:130px;
}
a.tooltip:hover span{
display:inline;
position:absolute;
background:#ffffff;
border:1px solid #cccccc;
color:#6c6c6c;
}HTML:
<.a class="tooltip" href="#">Tooltip<.span>提示文字......<./.span><./.a>(去掉红点)
Download:
直接下载:easy_css_tooltip.zip- Reads(1675)
- Comments(0)

CSS布局:40个教程,技巧,演示
美侬灰卡使用手册