I layout my content to display on the left an image in a div, then text with a link in another div
However in responsive mode, my content div with the link goes above my div with image
Is it possible to have the display corresponding to the order of my divs?
I would like to display the image first and then my content
there is my html :
<div class="col-12 col-lg-6 d-flex justify-content-center justify-content-lg-end mb-4 mb-lg-0">
<div class="w-100 img-fluid px-3 px-lg-0">
<img src="#" alt="#">
</div>
</div>
<div class="col-12 col-lg-6 text py-5">
<h1>title</h1>
<div class="pr-0 pr-0">
<h2>subtitle</h2>
</div>
<p>{# some content #}</p>
<a href="">link</a>
</div>