How to center the images in the Owl Carousel

后端 未结 5 1282
隐瞒了意图╮
隐瞒了意图╮ 2021-02-04 00:10

My Owl Carousel contains pictures of different width and height. How do I align them in the middle - both horizontally and vertically?

5条回答
  •  暖寄归人
    2021-02-04 00:23

    Another solution is to use flexbox with margin.

    .owl-stage-outer {
      display: flex;
      flex-wrap: nowrap;
      flex-direction: column;
    }
    .owl-stage-outer > .owl-stage {
      margin:0 auto;
    }
    

提交回复
热议问题