My Owl Carousel contains pictures of different width and height. How do I align them in the middle - both horizontally and vertically?
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; }