1

嗨,我从这篇文章中看到了这个 codepen: http ://codepen.io/anon/pen/jJAHL: owl carousel,navigation center

我需要将项目设置在轮播的底部。

我试过了

div.owl-item > div {
    display:table-cell;
    vertical-align:middle;
}

但它不起作用

4

1 回答 1

18

我刚刚遇到这个问题,并认为我会回答它!

.owl-carousel .owl-wrapper {
  display: table !important;
}

.owl-carousel .owl-item {
  display: table-cell;
  float: none;
  vertical-align: bottom;
}

这是更新的CODEPEN

于 2015-02-03T18:15:49.533 回答