How add spaces between Slick carousel item

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

    An improvement based on the post by Dishan TD (which removes the vertical margin as well):

      .slick-slide{
        margin-left:  15px;
        margin-right:  15px;
      }
    
      .slick-list {
        margin-left: -15px;
        margin-right: -15px;
        pointer-events: none;
      }
    

    Note: the pointer-events was necessary in my case, to be able to click on the left arrow.

提交回复
热议问题