Is it possible to rearrange this code for mobile view?
Currently, on desktop, the
<div class="grid4-12">
(left) and <div class="grid8-12">
(right) are stacked on top of each other.How can I adjust the code so that on a responsive design,
<div class="grid8-12">
appears above and <div class="grid4-12">
is positioned below?
See the code snippet below
<div class="card-content-lg" style=" background: #ffffff;">
<div class="grid4-12">
<div class="quote-wrapper test">
<div class="quote-col1 test">
<div class="quote-image"><img alt="Image1" src="/images" /></div>
</div>
<div class="quote-col2 test2">
<div class="quote-text">This is only test</div>
</div>
<div class="quote-col3">
<div><img alt="ABC" src="/images" /></div>
</div>
</div>
</div>
<div class="grid8-12">
<div class="card-content-md">
<h2 class="abc">This is h2 text</h2>
<p>This is a test.</p>
</div>
</div>
</div>