How add spaces between Slick carousel item

后端 未结 13 2596
野性不改
野性不改 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:55

    With the help of pseudo classes removed margins from first and last child, and used adaptive height true in the script. Try this fiddle

    One more Demo

     $('.single-item').slick({
            initialSlide: 3,
            infinite: false,
            adaptiveHeight: true
        });
    

提交回复
热议问题