How can I create a left navbar using Bootstrap? I managed to do it.
<nav class="btn-group-vertical float-left navbar">
<button routerLink="product/home" routerLinkActive="is-active" class="btn btn-outline-dark">Home</button>
<button routerLink="product/favorite" routerLinkActive="is-active" class="btn btn-outline-dark">Favorite</button>
</nav>
However, I am encountering an unexpected issue.
https://i.sstatic.net/0x2RG.jpg
I want to ensure that everything works with good positioning while utilizing Bootstrap 4 effectively.
Thank you for your assistance! :-)