Is there a way to align the navigation items to the right side?
I'm currently using Bootstrap 5 and leveraging the navigation feature. By default, the items are positioned on the left, however, I wish to move them to the right side. I have tried utilizing navbar-right
, float: right;
, and ml-auto
, even though they are intended for Bootstrap 4. Below is a visual representation of how the navbar appears on the website:
https://i.sstatic.net/NbnIZ.png
Additionally, here is a snippet of my code:
https://i.sstatic.net/2JJmo.png
(Please note that the alignment only works outside the
<div class="collapse navbar-collapse" id="navbarSupportedContent">
. However, it is essential for me to keep them inside this specific div.)