Is there a way to center a column on mobile devices only while maintaining a fixed height for the section?
<div class="" style="background-image: url(image url;); background-position: right bottom; background-size: cover; height: 462px;">
<div class="container">
<div class="row h-100">
<div class="d-md-block d-none col-md-5" style=""><img class="img-fluid mx-auto d-block" src="image url"></div>
<div class="col-12 my-auto col-md-7">
<h1 class="display-4">Display 4</h1><a class="btn btn-primary" href="#">Button</a>
</div>
</div>
</div>
Any suggestions on how I could make this work?