I am working with a div that has a height of 200px. How can I make sure the ul items are divided into equal rows within the div, instead of always aligning to the top? To illustrate this, I have colored the div green. As I will be using ngFor in my ul, the number of rows may vary.
<div style="height:200px">
<ul class="list-group list-group-flush">
<li class="list-group-item border-0 bg-transparent ">
test
</li>
<li class="list-group-item border-0 bg-transparent">
test1
</li>
</ul>
</div>