How to center the images in the Owl Carousel

后端 未结 5 1283
隐瞒了意图╮
隐瞒了意图╮ 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条回答
  •  旧时难觅i
    2021-02-04 00:36

    This works for me:

    @media (max-width:500px) {
        .owl-carousel .owl-item {
            text-align:center;
        }
        .owl-carousel .item {
            float: none;
            display: inline-block;
        }
    }
    

    You might adjust it to your HTML though, but the idea is that you text-align a parent, and float:none and display:inline-block the child that holds the content, on mobile:

提交回复
热议问题