I hope it's okay to ask a flexbox question here. I'm working on finding a forum for that.
I have an index.cshtml file with the following, where the flex-item has "flex: 0 0 20%"
<div class="flex-container">
@foreach (var i in Model)
{
<div class="flex-item">
<!-- show a card here -->
</div>
}
</div>
This displays 5 items (card) across the screen, and works great.
My question is this: is there a way to basically do the following:
card card card card card
<skip> card card card card
<skip> card card card card
etc.?
][1]