我试图在我的注册表中使用hint.css,但是它不起作用,工具提示可以与其他标签一起正常使用,但不能与<input>标签一起使用
这是我的html部分:

<link href="http://cdn.jsdelivr.net/hint.css/1.3.2/hint.css" rel="stylesheet">
<p>
<a class="hint--bottom" data-hint="This is a tooltip">Hello</a>
</p>
<input name="name" value="" class="hint--bottom" data-hint="This is a tooltip"/>


演示here

或建议任何支持输入标签的替代工具提示。

PS:请不要在您的演示中使用jsfiddle,因为在我缓慢的连接上打开它花费的时间太长。

最佳答案

不知道为什么它不起作用,但是请尝试将其包装在span标签中。

<span class="hint--bottom" data-hint="This is a tooltip!"><input name="name" value=""/></span>

关于html - hint.css无法使用输入标签,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24115959/

10-09 05:40