Reputation: 38145
How can I change the following so that when I hover over a navbar item, its color changes to red?
.nav-item.active .nav-link{
color: blue !important;
}
.nav-item.hover .nav-link{
color: red !important;
}
Upvotes: 1
Views: 168