I'm using bootstrap 4 and want to create a nabvar with text links that is always expanded. Is this possible? I've tried the code below based on the official docs but it creates a vertical list under the title rather than horizontal.
<nav class="navbar navbar-expand navbar-dark bg-primary">
<span class="navbar-brand h1 text-white">Title</span>
<div class="navbar-nav">
<a class="nav-item nav-link text-white" href="#">Home</a>
<a class="nav-item nav-link text-white" href="#">Features</a>
<a class="nav-item nav-link text-white" href="#">Pricing</a>
</div>
</div>
</nav>