When I use .container
, the logo is not going to the left but when I use .container-fluid
, the logo goes to the left. please tell me why .container
is not working.
<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>