如何在右侧制作带有标题的自举旋转木马?

时间:2018-06-04 11:17:40

标签: html css twitter-bootstrap twitter-bootstrap-3


我试图让标题位于右侧。但是,它只是在左侧对齐。

CSS:

#jumboCarousel {
    margin-top: 70px;
    min-height: 300px;
    max-height: 600px;
    min-width: 100%;
}
#jumboCarousel img {
    min-height: 300px;
  max-height: 600px;
    min-width: 100%;
}
#jumboCarousel > .carousel-indicators > li {
    border-radius: 0px;
    min-width: 25px;
    background-color: #9d9d9d;
    border: 1px solid black;
    margin-right: 10px;;
    margin-left: 10px;;
}
#jumboCarousel > .carousel-indicators > .active {
    background-color: orange;
}
#jumboCarousel .carousel-caption {
    color: white;
    xright: 58%;
    text-align: center;
    max-width: 300px;
    right: 0;
    top: 1px;
  /*top: 50%; */
  xtransform: translateY(-50%);
  xbottom: initial;
  background: rgba(0,0,0,0.5);
  padding:10px;
  height:100%;

}

.item {
    -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  }

我的问题的代码是https://codepen.io/mrsalami/pen/VdeGYK?editors=1100

2 个答案:

答案 0 :(得分:1)

只需将left: auto;添加到#jumboCarousel .carousel-caption

即可
#jumboCarousel .carousel-caption {
    color: white;
    text-align: center;
    max-width: 300px;
    right: 0;
    top: 1px;
    xtransform: translateY(-50%);
    xbottom: initial;
    background: rgba(0,0,0,0.5);
    padding: 10px;
    height: 100%;
    left: auto; /*Added*/
}

答案 1 :(得分:0)

问题似乎是左边:20%; .carousel-caption类中的值。

解决方案是添加left:initial;

    #jumboCarousel .carousel-caption {left:initial;}