I stand at the beginning.
I want to build a navigation similar to this:
This is my basic boostrap4 navigation html:
<nav class="navbar navbar-expand navbar-light bg-light">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Stammdaten <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Diagnose</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Erstbehandlung
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Verlauf</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Tumorkonferenzen</a>
</li>
</ul>
</nav>
The navbar should not collapse - I achieved this with navbar-expand
The navbar should have the width of the content - I don't know how.
The navbar should have a margin on the right side and I want to apply a similar style (rounded corners).
Thank you very much!