I am looking to combine two divs in the header section of my website. Both divs should have a black background with no white space between them. Can anyone provide advice on this? Additionally, I would appreciate any recommendations on how to structure my code. I am currently using a container class, but it does not seem to be defined in my CSS. Is this default in Bootstrap or another framework?
Thank you! Please refer to the following code snippet:
<div class="nav">
<div class="container" style="background-color: #000000;>
<ul class="pull-left">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
</ul>
<ul class="pull-right">
<li><a href="#">Portfolio</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
<div style="background-color: #000000;" class="container" >
<div><img src="http://www.part-box.com/images/yf.png" height="auto" width="400"></div>
</div>