Working on a footer using bootstrap and it's looking great, but I encountered an issue with blank space appearing at a specific resolution (see image below).
Bootstrap Footer:
https://i.sstatic.net/XifQe.png
My Footer Design:
<footer>
<div class="container-fluid">
<div class="row">
<div class="col-sm-6">
<h6>Copyright © 2018</h6>
</div>
<div class="col-sm-6">
<h6>About us</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eget sapien dolor. Nam aliquam augue ante, et sodales felis vulputate iaculis.</p>
</div>
</div>
</div>
</footer>
footer{
background: #333;
color: #eee;
font-size: 11px;
padding: 20px;
}
Any suggestions on how to resolve this issue?
After trying nikhil's approach, this is the result: