如何在屏幕顶部显示工具提示

时间:2014-11-10 06:07:29

标签: javascript jquery html css angularjs

<html>
   <span ng-if="item.description!=''&&item.description!=null"><img tooltip-placement="bottom" tooltip-html-unsafe="{{item.description}}" class="tooltip-icon malign" src="app/img/permission.png"/></span>
   <span ng-if="item.description==''||item.description==null"><img tooltip-placement="bottom" tooltip-html-unsafe="No description available" class="tooltip-icon malign" src="app/img/permission.png"/></span>
</html>

我遇到的问题是编辑和删除工具提示没有完全显示在前面的屏幕上。它正在打破背景屏幕。

然后我添加了

position:fixed;

之后,工具提示正确显示。

1 个答案:

答案 0 :(得分:0)

如果您只想要一个非常基本的工具提示,您可以尝试

<img title="This is my tooltip"