While learning how to style links with Bootstrap, I came across this tutorial. However, I encountered a problem when I tried adding the classes badge badge-info
to the a
tag. It doesn't display the hover effect when I hover over it with the mouse, but only changes the background color. Here is the code snippet (which includes some Vue.js
):
<div class="mask">
<div class="mask-content">
<h5>{{anime.title}}</h5>
<!-- The link with the issue -->
<a class="badge badge-info text-white">Read More...</a>
</div>
</div>
My Question: How can I resolve this problem and make the hover effect visible?