在www.euroworker.no/order我一直在尝试添加工具提示功能,但似乎我误解了它。我可以在此列表中使用简单的工具提示吗? IT需要显示图像和文本。
答案 0 :(得分:0)
最简单的工具提示。
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:block; position:absolute; background:#ffffff; border:1px solid #cccccc; color:#6c6c6c;}
使用这个简单的HTML:
Easy <a class="tooltip" href="#">Tooltip<span>This is the crazy little Easy Tooltip Text.</span></a>.