how add spaces between owl carousel item

后端 未结 8 1017
醉酒成梦
醉酒成梦 2021-02-14 16:15

How can i add space between owl item. add margin or padding between items. this is need to be responsive.can i add some gutter in to the jquery.

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-14 16:29

    You can use pure CSS using box-shadow as follow:

    .item::after{
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 100%;
      -webkit-box-shadow: inset -5px 0px 0px 0px rgba(255,255,255,1);
      -moz-box-shadow: inset -5px 0px 0px 0px rgba(255,255,255,1);
      box-shadow: inset -5px 0px 0px 0px rgba(255,255,255,1);
    }
    

提交回复
热议问题