Struggling to align links in a Navbar to different sides? I attempted using the classes "ms-auto" and "me-auto" on two lists, but had no success (everything stayed to the left, as shown in the picture). Essentially, I want the "Dropdown" item on the right of the Navbar and the rest on the left.
https://i.sstatic.net/8zFt5.png
<nav class="navbar fixed-top">
<div class="navbar-nav position-fixed" id="navbarSupportedContent">
<a class="navbar-brand" href="/">Company</a>
<ul class="navbar nav ms-auto">
<li class="nav-item"><a href="/" class="nav-link">Home</a></li>
<li class="nav-item"><a href="/Home/About" class="nav-link">About</a></li>
<li class="nav-item"><a href="/Home/Contact" class="nav-link">Contact</a></li>
</ul>
<ul class="navbar nav me-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDarkDropdownMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Dropdown
</a>
</li>
</ul>
</div>
</nav>