Just started working with Bootstrap, I am currently using Bootstrap 4 alpha 6 and having difficulty setting up a basic navbar. I want the brand on the left and a simple button on the right. I have gone through the documentation but haven't been able to resolve my issue. I believe it has something to do with "mr-auto" or a similar property. I attempted using "float-right", however, the button remains below the brand on the left. Here is the code snippet...
<nav class="navbar navbar-light bg-faded">
<a class="navbar-brand" href="#">My Brand</a>
<div class="mr-auto">
<a href=""><button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button></a>
</div>
</nav>
Any assistance would be highly appreciated.