Owl Carousel在高度不相等时垂直对齐每个项目

时间:2016-09-04 18:42:18

标签: html css twitter-bootstrap owl-carousel

我正在开发一个非常简单的Html / Boostrap网站。 我正在使用owl-carousel库来显示和滑动多个段落。 问题是,当在小型设备上显示时,这些段落的高度将不同,具体取决于它们的长度。

我希望我的所有owl-item div或段落在owl-wrapper div中垂直对齐。我尝试了几种显示组合,以及猫头鹰旋转木马的autoHeight: true选项,但除了我之外它不起作用。

看到图片,小段落显示在猫头鹰包装div的顶部,但我希望它垂直居中:

enter image description here

enter image description here

<div class="container">
  <div class="caption text-center text-white" data-stellar-ratio="0.7">
    <div id="owl-intro-text" class="owl-carousel">
      <div class="item">
        <h1>Oscar Götting</h1>
      </div>
      <div class="item">
        <h1>Let's build something together</h1>
      </div>
    </div>
  </div>
</div>

1 个答案:

答案 0 :(得分:5)

将此添加到您的CSS

.owl-carousel .owl-stage { display: flex; align-items: center; }