2014-09-26 102 views

回答

15

我只是碰到這種問題就來了,我想我會回答! 您首先需要設置.owl-wrapperdisplay: table;

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

然後,你需要設置.owl-itemdisplay: table-cell;float: none;然後vertical-align: bottom;

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

這裏是更新CODEPEN