Как сделать, чтобы все слайдеры с разным содержимым были одинаковой высоты ( по самому высокому слайду )?

import { Swiper, SwiperSlide } from 'swiper/react';

    <div className={clsx(className, styles.swiper)} ref={ref}>
      <Swiper
        width={width}
        slidesPerView="auto"
        speed={speed}
        loop={true}
        spaceBetween={spaceBetweenItems}
        loopedSlides={childrenArray.length}
        allowTouchMove={allowTouchMove}
        autoplay={{
          delay: 1,
          disableOnInteraction: false,
          reverseDirection: reverse,
        }}
        className="carousel-autoplay"
      >
        {childrenArray.map((item, index) => {
          return (
            <SwiperSlide key={'slide' + index} style={{ width: 'max-content' }}>
              {item}
            </SwiperSlide>
          );
        })}
      </Swiper>
</div>
  • Вопрос задан
  • 50 просмотров
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы
24 нояб. 2024, в 23:46
20000 руб./за проект
24 нояб. 2024, в 23:07
2000 руб./за проект