Currently, I am in the process of designing a webpage that utilizes Bootstrap. To structure my page layout, I am utilizing the grid system and the col-lg-x class. Specifically, I have split the page into two sections with the code below:
<div class='container'>
<div class='row'>
<div class='col-lg-7'></div>
<div class='col-lg-5'></div>
</div>
</div>
I have added content within these columns and adjusted the box-sizing property to border-box. Despite adhering to the guidelines of the Bootstrap grid system, I am still noticing a horizontal bar on the page. From what I understand, Bootstrap divides the page into 12 equal columns, so I am puzzled as to why this horizontal bar is appearing. Any insights or suggestions would be greatly appreciated.