Here is the code for my Bootstrap 4 navbar. I am attempting to make the right side navbar height reach full 100%.
<nav class="navbar navbar-expand-sm bg-light navbar-light"
style="width: 200px; float: right;">
<ul class="nav flex-column">
<li class="nav-item active">
<a class="nav-link" href="#">Sports</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Facebook</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Youtube</a>
</li>
</ul>
</nav>
I attempted using height: 100%;
and adding navbar-full
to the <nav>
, but the changes did not take effect.
Please refer to the image below: