I'm trying to underline the currently selected menu item in a navbar, but I'm having trouble getting it to work.
Here's my code:
.navbar-nav .nav-item:focus .nav-link {
text-decoration: underline;
background-color: yellow;
}
It's a common practice to underline or highlight the selected menu link, but I'm struggling to do this with Bootstrap 5.