I am having trouble getting the image on the right to expand to full width when the screen size is reduced, transitioning it to mobile view. Is there a Bootstrap class that works similarly to "img-fluid", but displays the image in full width below the text in the Bootstrap grid system?
<div class="row">
<div class="col-md-6 d-flex">
<div class="align-self-center">
<p class="lead font-weight-bold">sometext</p>
</div>
</div>
<div class="col-sm-6">
<img class="img-fluid" src="someimage.jpg">
</div>
</div>
Check out my fiddle: http://jsfiddle.net/x1hphsvb/2220/. Lower the width of the display window to see what I mean - the image drops below the text and only fills half of the div, but I want it to fill the entire space and behave as it does before the transition.