Hello,
Could someone explain what the active and disabled refer to in this example from Bootstrap’s official docs? I thought it would refer to the state of the link as in active link vs. disabled link. However, when I add links to test, all links appear that they work.
<ul class="nav">
<li class="nav-item">
<a class="nav-link active" href="#">Active</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Disabled</a>
</li>
</ul>