在Bootstrap Carousel中设置全宽/高标题的问题

时间:2015-12-11 08:44:56

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

我无法为.carousel-caption设置完整的轮播尺寸高度和宽度?我做了demo。如你所见,我试过这个:

.carousel-caption{
     background: rgba(44, 44, 23, 0.2);
     width:100%;
     height:100%;
}

但它没有生成一个完整的宽度/高度标题div!

1 个答案:

答案 0 :(得分:1)

旋转木马标题具有绝对位置。因此试试这个。

.carousel-caption{
    background-color: rgba(44, 44, 23, 0.2);
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}