I want my 2 columns to be different size and background-color, but I want them together to always take up 100% width while the text content stays inside the normal container. Any ideas?
Link to jsfiddle: https://jsfiddle.net/de5k2j4n/1/
<div class="container">
<p>
Text inside container
</p>
<div class="row">
<div class="col-sm-4">
<p>
Text inside container, but my background wants to take all width on left
</p>
</div>
<div class="col-sm-8">
<p>
Text inside container, but my background wants to take all width on right
</p>
</div>
</div>
I sketched a picture to visualize my idea: