When utilizing this HTML code:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>app</title>
<meta name="description" content="todoApp">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.min.css">
</head>
<body>
<div class="container-fluid">
<nav class="navbar navbar-toggleable-sm navbar-inverse bg-inverse fixed-top">
<a class="navbar-brand" href="#">App</a>
<ul class="nav navbar-nav">
<li class="nav-item">
<a href="#" class="nav-link">
home
</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
about
</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
admin
</a>
</li>
</ul>
</nav>
</div>
</body>
</html>
Everything appears correctly in the navigation menu when the browser window width exceeds 760px:
https://i.sstatic.net/7izNi.png
However, should the window width decrease to less than 760px, the menu shifts downwards:
https://i.sstatic.net/gEVF8.png
How can the menu be styled to remain consistent regardless of window width, while avoiding the use of a hamburger button when the window is resized?
Appreciate your assistance!