Looking for guidance with the layout of my code. In mobile view, the image is currently displayed at the end after the paragraph, but I want it to be shown after the sub-header just above the paragraph. I've tried using flex and other methods, but the image keeps appearing all the way on the top above the header. Is there a solution to achieve this solely with HTML and CSS?
<div class="row">
<div class="col-md-10 col-lg-6">
<div> Some Image Here </div>
</div>
<div class="col-lg-6">
<h1>Header Here</h1>
<h3> Sub-Header Here </h3>
<p> Paragraph Here </p>
</div>
</div>
In mobile view, the desired order is:
HEADER
SUB-HEADER
IMAGE
PARAGRAPH