I am having a hard time to center a title in the navbar component, two navbars with a button on the left side or without show two differently centered brands:
<nav class="navbar sticky-top navbar-expand-sm navbar-light bg-light">
<a class="nav-item nav-link" href="/"><Index</a>
<a class="navbar-brand mx-auto" href="#">News</a>
</nav>
versus
<nav class="navbar sticky-top navbar-expand-sm navbar-light bg-light">
<a class="navbar-brand mx-auto" href="#">News</a>
</nav>
The codeply snippet shows how different these two navbars look. Is there a way to truly center a string as a title independently of the buttons left and right?