Is there a way to make my responsive webpage ensure that the full-screen element appears between sibling elements when viewed on mobile devices? Check it out on desktop or on mobile here.
I have three (div) elements: two in one row and another in a separate div. How can I adjust the positioning so that the blue element is placed between the orange and yellow divs when viewed on mobile?
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4">
<div class="row orange"></div>
<div class="row yellow"></div>
</div>
<div class="col-xs-12 col-md-8">
<div class="row blue"></div>
</div>
</div>