У меня есть 4 иконки в порядке строк на больших экранах, но на маленьком экране (скажем, менее 768 пикселей) мне нужно 2 иконки в порядке строк.
Вот мой текущий код:
.welcome {
display: flex;
justify-content: space-around;
}
@media (max-width: 768px) {
/* I need the code here */
}
<section class="container text-center">
<h2 id="h2-welcome"><strong>Welcome to our website</strong></h2>
<div class="welcome">
<div class="welcome-content">
<i class="fas fa-life-ring fa-5x"></i>
<p>Sherbimi 24/7</p>
</div>
<div class="welcome-content">
<i class="fas fa-tachometer-alt fa-5x"></i>
<p>Shpejt & Stabil</p>
</div>
<div class="welcome-content">
<i class="fas fa-globe-europe fa-5x"></i>
<p>Kanale nga gjithe Bota</p>
</div>
<div class="welcome-content">
<i class="fas fa-user-shield fa-5x"></i>
<p>Sigurt & Shpejt</p>
</div>
</div>
</section>