Is there a way to make a column expand to the full width on the right within a container?
<div class="container">
<div class="row">
<div class="col-5">
Lorem ipsum
</div>
<div class="col-7 img-col">
<img class="img-fluid" src="https://placeimg.com/640/480/nature/sepia"/>
</div>
</div>
</div>
I attempted to use position absolute on the right column, but it didn't stretch to the left side.