把Div放在Bootstrap 3 Carousel上

时间:2014-05-02 02:36:15

标签: html css twitter-bootstrap-3 carousel

我试图在旋转木马上放一个div。

这是代码

<div id="join" style="z-index:5;">
    <div class="image-join" style="z-index:10;">
        <div class="join-text">Join the revolution</div>
    </div>              
</div>

和css

.item{
    height:354px;
    width:100;
}

#join{
    position: absolute;
    top: 0px;
    background-color:rgba(0,0,0,0);
    width: 100%;
}

.image-join{
    margin-left:200px;
    width:50px;
    height: 354px;
    background-color:rgba(194,194,194,.4);
    border: 1px solid rgba(245, 0, 0, 1);
    border-radius: 12px;
}

.join-text{
    color:rgba(255,255,255,.9);
}

我面临的问题是我无法放置div并使旋转木马(箭头和圆点)的控制工作,因为包裹旋转木马的div的div是绝对定位的。

这是我的小提琴

http://jsfiddle.net/agusgambina/7WCnT/2/

谢谢

1 个答案:

答案 0 :(得分:2)

只需在CSS中添加以下代码

.carousel-control.left {
    z-index:7
}  
.carousel-control.right {
    z-index:7
}