Im having trouble with the Slick carousel JS plugin with multiple slidesToShow which have different heights.
I need the Slides to have the same
Here's an SCSS-only solution if you're OK with using object-fit:
.slick { .slick-track { display: flex; .slick-slide { display: flex; height: auto; img { height: 100%; object-fit: cover; object-position: center; } } } }