Reputation: 25
cannot get text to align right in bootstrap 4 looked at all docs and cant figure it out. I have tried several examples including these.
sample at http://exactcontents.com
text aligned righttext aligned right
does not align
Upvotes: 0
Views: 88
Reputation: 497
just so i have this right your attempting to make your menu sit to the right side if so Edit your to ml-auto not mr-auto
<ul class="navbar-nav ml-auto">
if its your 2
tags i would take them out of your ul parent and add them in a div which you can ml-auto
Upvotes: 0
Reputation: 1504
The element is aligned right correctly.
The problem is that The <ul>
that contains those elementshas a width that not fills all the space available. You can add a border to see that.
Solution:
width: -webkit-fill-available;
to the .navbar-nav
(this is the <ul>
).<p>
repeated.<p>
add the following styles: width: -webkit-fill-available;
text-align: right;
Hope it helps.
Upvotes: 1