0👍
Is there a reason you’re adding a "hover" class instead of using the pseudo-class :hover
?
After three or four clicks, do the links get bigger in their default state, on hover, on click?
If it’s on click, you’ll want to add styling with the :active
pseudo-class. But remember to put your pseudo classes in this order, or they can override each other: :link
, :visited
, :hover
, :focus
, :active
.
- [Vuejs]-How to toggle between roadmap view and satellite view(google maps)on click of a single button in vue.js
- [Vuejs]-How can I customize Vant.js?
Source:stackexchange.com