How do I align a navbar item to right?
I want to have the login and register to the right. But everything I try does not seem to work.
This is what I have tried so far:
<div>
around the<ul>
with the atribute:style="float: right"
<div>
around the<ul>
with the atribute:style="text-align: right"
- tried those two things on the
<li>
tags - tried all those things again with
!important
added to the end - changed
nav-item
tonav-right
in the<li>
- added a
pull-sm-right
class to the<li>
- added a
align-content-end
class to the<li>
This is my code:
<div id="app" class="container">
<nav class="navbar navbar-toggleable-md navbar-light bg-faded">
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="#">Navbar</a>
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Pricingg</a>
</li>
</ul>
<ul class="navbar-nav " >
<li class="nav-item">
<a class="nav-link" href="{{ url('/login') }}">Login</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ url('/register') }}">Register</a>
</li>
</ul>
</nav>
@yield('content')
</div>
Use
ml-auto
instead ofmr-auto
after applyingnav
justify-content-end to theul
Bootstrap 4 has many different ways to align navbar items.
float-right
won't work because the navbar is nowflexbox
.You can use the new
mr-auto
for auto right margin on the 1st (left)navbar-nav
. Alternatively,ml-auto
could be used on the 2nd (right)navbar-nav
, or if you just have a singlenavbar-nav
.http://www.codeply.com/go/P0G393rzfm
There are also flexbox utils. In this case, you have 2
navbar-nav
s, sojustify-content-between
innavbar-collapse
would work the even the space between them,Update for Bootstrap 4.0 and newer
As of Bootstrap 4 beta,
ml-auto
will still work to push items to the right. Just be aware the thenavbar-toggleable-
classes have changed tonavbar-expand-*
Updated navbar right for Bootstrap 4
Another frequent Bootstrap 4 Navbar right alignment scenario includes a button on the right that remains outside the mobile collapse nav so that it is always shown at all widths.
Right align button that is always visible
Related: Bootstrap NavBar with left, center or right aligned items
Just add mr-auto class at ul
If you have menu list in both side you can do something like this:
I am running Angular 4 (v.4.0.0) and ng-bootstrap (Bootstrap 4). This code won't all be relevant but hoping people can pick and choose what works. It took me sometime to find a solution to get my items to justify right, collapse properly and to implement a dropdown off my google (using OAuth) profile picture.
In my case, I wanted just one set of navigation buttons / options and found that this will work:
So, you will add
justify-content-end
to the div and omitmr-auto
on the list.Here is a working example.
If all above fails, I added 100% width to the navbar class in CSS. Until then mr auto wasn't working for me on this project using 4.1.