I have a row with wrap enabled, and items with fixed width. I don't want to stretch out the last item! The problem is, that if every row has 3 item, and the last row have only 1, then that one item is centered fully, but I want to align to the left.
This is the code now:
<div class="container full-extended-width"><div class="row justify-content-center"> @foreach ($brand->getProductCategories as $productCategory) @if ($productCategory->parent_id == null)<div class="item-container"><img src="/product_category_logos/{{ $productCategory->id }}.png"><br><div class="title">{{ mb_strtoupper($productCategory->name) }}</div></div> @endif @endforeach</div></div>
Thank you for any help!