I want to achieve something like this.
I have tried container fluid and manually setting margin-left on the left column, but this is not 100%. I also tried different variations from this article, but this did not work either. https://css-tricks.com/full-width-containers-limited-width-parents/
Markup would be like this
<div class="container">
<div class="row">
<div class="col-md-6">left column</div>
<div class="col-md-6">right column should extend to right screen edge</div>
</div>
</div>