我无法为.carousel-caption
设置完整的轮播尺寸高度和宽度?我做了demo。如你所见,我试过这个:
.carousel-caption{
background: rgba(44, 44, 23, 0.2);
width:100%;
height:100%;
}
但它没有生成一个完整的宽度/高度标题div!
答案 0 :(得分:1)
旋转木马标题具有绝对位置。因此试试这个。
.carousel-caption{
background-color: rgba(44, 44, 23, 0.2);
bottom: 0;
left: 0;
right: 0;
top: 0;
}