I am trying to align two buttons to the right of my navbar, and I cant seem to figure it out. Reading the bootstrap documents I have tried justify-content-end
as well as pull-right
on a div and not the buttons themself with no luck. Any help would be greatly appreciated.
<nav class="navbar navbar-expand-md fixed top bg-light">
<a class="navbar-brand">Logo</a>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link">Lorem</a>
</li>
<li class="nav-item">
<a class="nav-link">Ipsum</a>
</li>
</ul>
<div class="pull-right justify-content-end">
<button class="btn pull-right">Sign up</button>
<button class="btn pull-right">Sign in</button>
</div>
</nav>
jsfiddle: https://jsfiddle.net/y8c5u3kL/2/