我遵循this tutorial来样式化Bootstrap的链接,但是当我将badge badge-info
类添加到a
标签时,当我将其悬停在其上时,它没有显示出悬停效果用鼠标,它只是改变背景颜色。代码(它有一些Vue.js
):
<div class="mask">
<div class="mask-content">
<h5>{{anime.title}}</h5>
<!-- The link with the problem -->
<a class="badge badge-info text-white">Read More...</a>
</div>
</div>
问题:如何解决此问题并显示悬停效果?
答案 0 :(得分:3)
您将必须使用href属性来使用引导程序的自然悬停效果。以下是几种方法:
<a class="badge badge-info text-white" href="javascript:;">Read More...</a>
<!--FYI.. This will cause the page to jump to the top -->
<a class="badge badge-info text-white" href="#">Read More...</a>