I have an outer div with 4 cards inside. When I reach a specific width (done with media query) I want the cards to wrap so they are 2x2.
I tried to set width:50%
for .inner
on the breaking point but that doesn't solve the problem.
How can I achieve this using flexbox?
.outer{display:flex;flex-wrap:wrap;}
.inner{width:100px;height:200px;background-color:blue;margin-right:10px}
<div class="outer">
<div class="inner"></div>
<div class="inner"></div>
<div class="inner"></div>
<div class="inner"></div>
</div>