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

How to show the tooltip on top of screen

本文关键字:显示 工具提示 顶部 屏幕      更新时间:2023-09-26
<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;

所以在那之后,工具提示正确显示。

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

<img title="This is my tooltip"