I'm facing an issue with the alignment of images on my website. The images are currently displayed from the top, but I would like them to be aligned in the middle vertically. However, using the 'vertical-align: middle' property on the images in the listings of this page doesn't seem to work.
Visit the main page of the listings
Here is the code snippet in question:
<div class="carousel-item @if ($key == 0) active @endif">
<a href="{{ url('/details') }}/{{ $business->id }}">
<img src="{{ url('public/pixeladmin/plugins/images/business/' . $img->image . '') }}"
class="d-block w-100 business-images" alt="..."></a>
</div>