旋转木马标题最低位置

时间:2017-05-09 07:14:15

标签: html css carousel

有没有办法可以将bootstrap轮播标题重新定位到图像的最低部分? CSS如下:

.carousel-caption {
    max-width: 100%;
    width:100%;
    background:rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
}

1 个答案:

答案 0 :(得分:0)

您可以使用bottom:0px

.carousel-caption {
  max-width: 100%;
  width:100%;
  background:rgba(0,0,0,0.5);
  position: absolute;
  left: 0;
  bottom: 0px;
}