如何在旋转木马中心设置图像(Onsen-UI)

时间:2016-09-05 15:02:23

标签: html css angularjs onsen-ui

我使用带角度的Onsen-ui。我试图在旋转木马的中心设置图像,但他们总是在左边对齐,这里是我的代码

<ons-carousel direction="horizontal" style="height: 62.5%; background-color: blue;" swipeable auto-scroll overscrollable id="carousel">

<ons-carousel-item style="margin: auto">
  <img src="images/carousel1.jpg" style="margin: auto; height: 100%">
</ons-carousel-item >

<ons-carousel-item style="margin: auto">
  <img src="images/carousel2.jpg" style="height: 100%; margin: auto"> 
</ons-carousel-item>

<ons-carousel-item style="margin: auto">
   <img src="images/carousel3.jpg" style="height: 100%; margin: auto">
 </ons-carousel-item>

请帮我解决这个问题

1 个答案:

答案 0 :(得分:0)

尝试

ons-carousel-item {
    text-align: center;
}

如果不起作用:

ons-carousel-item img {
    margin-left: auto;
    margin-right: auto;
}