Having trouble with maintaining image placement in bootstrap rows. I want to achieve a modern website design where images are positioned both right and left, but on smaller screens, the image should be at the top.
https://i.sstatic.net/QhNtX.png
Currently facing this issue:
https://i.sstatic.net/crFlo.png
I considered using flexbox, but it lacks responsive rows required for fluid images.
<div class="container">
<div class="row">
<div class="col-md-7 col-sm-12 col-xs-12 ">
// Text Data
</div>
<div class="col-md-5 col-sm-12 col-xs-12 ">
<img class="img-fluid" src="url"></img>
</div>
</div>
</div>