我正在使用这个css-hint库以及一些引导左手和右手图标。我将css工具提示类声明为底部,它正在工作。但是,如果我将工具提示声明为class="hint-top
或class="hint-top
或class="hint-right
,则说明它不起作用。默认情况下,它显示所有文件的底部。不确定可能是什么问题。这是我的代码。
<div class="pre-btn" class="hint--top hint--error" data-hint="Previous Page!">
<a href="/jquery/jquery-basics" class="glyphicon glyphicon-hand-left "></a>
</div>
<div class="nxt-btn" class="hint--top" data-hint="Next page">
<a href="/jquery/jquery-selectors" class="glyphicon glyphicon-hand-right"></a><br />
</div>
注意:我正在使用css工具提示提示版本Hint.css - v1.3.4 - 2015-02-28
答案 0 :(得分:2)
您声明了两个单独的类,您需要将它们组合在一起:
这&gt;
class="pre-btn" class="hint--top hint--error"
应该是这个&gt;
class="hint--top hint--error pre-btn"
body,
html {
margin: 100px;
}
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link href="https://cdn.jsdelivr.net/hint.css/1.3.2/hint.min.css" rel="stylesheet" />
<div class="hint--top hint--error pre-btn" data-hint="Previous Page!">
<a href="/jquery/jquery-basics" class="glyphicon glyphicon-hand-left "></a>
</div>
<p>These are tooltips.</p>
<div class="hint--bottom nxt-btn" data-hint="Next page">
<a href="/jquery/jquery-selectors" class="glyphicon glyphicon-hand-right"></a>
</div>
&#13;