Looking to achieve a specific design effect without relying on Semantic UI? Check out the codepen link here: https://codepen.io/anon/pen/YxBOax
<div class="ui container">
<div class="ui four cards stackable">
<div class="teal card">Card1</div>
<div class="teal card">Card2</div>
<div class="teal card">Card3</div>
<div class="teal card">Card4</div>
<div class="teal card">Card5</div>
<div class="teal card">Card6</div>
</div>
</div>
The "ui four cards stackable" class allows for easy organization of cards. However, with dynamic user input, creating rows for every set of 4 cards can be challenging.
Wondering how best to accomplish this using plain CSS? Consider exploring CSS Grid for a solution that may streamline your layout process.
We appreciate any insights or suggestions you may have - thank you!