Recently delving into the world of bootstrap, I have been experimenting with various elements and classes. Strangely, some classes seem to work when added to certain elements, while others do not appear in the dev tools. For example, the class on the ul element works fine, but when applied to li and 'a' elements, it doesn't show up.
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link-active" href="">About Us</a>
</li>
`
I've attempted to restart the project and reconnect bootstrap, yet neither solution seems to resolve the issue.