I came across a helpful post on extending my container
to the edge of the screen. Despite following the instructions, I still noticed a white space (highlighted in red):
https://i.sstatic.net/w0bGf.png
To address this issue, I experimented with setting the width
to 103.75%
. However, upon resizing the screen, the white space reappeared. You can see the outcome in this animation.
I'm now seeking advice on how to make the container div
completely fill that white space.
The code snippet:
HTML structure
<div class="container-fluid">
<div class="row-fluid>
<div class="col-xs-5 col-sm-4"></div>
<div class="col-xs-7 col-sm-8">
<div class="container">
<div class="tab-content"></div>
</div>
</div>
</div>
</div>
CSS
.container{
background-color: #86E1D8;
height: 100vh;
width: 100%;
}
You can also check out the live example on JSFiddle.