В этом примере я хотел бы, чтобы мой столбец изображений располагался ниже столбца текстовой информации в мобильном представлении. Как бы мне этого добиться?
Я пытался использовать flexbox, но если бы мне не повезло, я был бы очень признателен, если бы кто-нибудь смог мне это объяснить. Спасибо
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-12">
<img src="img/buy1.png" class="img-fluid phone1" width="300" height="auto" alt="buy icon">
</div>
<div class="col-lg-8 col-md-12">
<div class="info-container">
<div class="purchase-icon-left">
<img src="img/buy-icon.png" class="purchase-icon" alt="buy icon">
</div>
<div class="text-test2">
<h1 class="title">SEEK</h1><h2 class="not-bold">and you will find.</h2>
<ul>
<li>Discover your desired items by browsing through eight different categories.</li>
<li>Browse through thousands of items sold by other users. </li>
<li>Don't agree with the price? Message the seller and request a price deduction. </li>
</ul>
</div>
</div>
</div>
</div>