How add spaces between Slick carousel item

后端 未结 13 2594
野性不改
野性不改 2020-12-04 19:41

I want to add space between two slick carousel items, but not want the space with padding, because it\'s reducing my element size(and I don\'t want that).

13条回答
  •  再見小時候
    2020-12-04 19:45

    Since the latest versions you can simply add a margin to your slides:

    .slick-slide {
      margin: 0 20px;
    }
    

    There's no need for any kind of negative margins, since slick's calculation is based on the elements outerHeight.

提交回复
热议问题