Currently, I am experimenting with the slick carousel for testing purposes. In my setup, I have manually set the height of the slides:
<div class="slides">
<div>slide a</div>
<div>slide b</div>
<div>slide c</div>
</div>
This is how the CSS looks like:
.slides {
height: 200px;
}
However, what I really want is for the carousel to adjust its height automatically based on the tallest slide it contains. Is there a way to achieve this dynamically?