JS工具提示在表格单元格中的位置

JS tooltip position in table cell

本文关键字:位置 单元格 表格 工具提示 JS      更新时间:2023-09-26

我使用的是JS工具提示库https://github.com/chrisdavies/tlite,它轻量级且易于样式化。

它工作得很好,除了在表中。为了便于演示,我制作了一个小提琴:https://jsfiddle.net/El4a/43gudyer/

只是为了在使用jsfiddle链接时添加代码:

<table>
<tr>
<td class="tooltip" title="I'm in the wrong position">This doenst work properly
</td>
</tr>
</table>

以上内容无效

我在github上打开了一个问题,但也许Stackoverflow会更快地找到解决方案:)

试试这个

table tr td{position:relative;} /** put this code in your stylesheet **/