Contact Form

Name

Email *

Message *

Cari Blog Ini

Bootstrap Navbar Highlighting

How to Change Font Color of Active NavItem in Bootstrap

Bootstrap Navbar Highlighting

In Bootstrap, nav-link class has styles for nav links. If you want to change the font color of the active nav link, you style that link using the active class. It's mostly used for highlighting the current page or section.

Code Snippet

 <nav class="navbar navbar-nav">   <li class="nav-item">     <a class="nav-link" href="#">Link 1</a>   </li>   <li class="nav-item">     <a class="nav-link active" href="#">Link 2</a>   </li>   <li class="nav-item">     <a class="nav-link" href="#">Link 3</a>   </li> </nav> 


Comments