Why does the logo not move to the left when I use .container
, but it does when I use .container-fluid
? Can someone explain why .container
is not working as expected?
<body>
<header>
<nav id="header-nav" class="navbar navbar-light">
<div class="container">
<div class="navbar-header">
<a href="project1.html" class="float-left">
<div id="logo"></div>
</a>
</div>
</div>
</nav>
</header>
</body>