【问题标题】:Carousel Caption Lowest Position轮播标题最低位置
【发布时间】:2017-05-09 15:27:37
【问题描述】:

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

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

【问题讨论】:

  • 检查w3School
  • 你试过bottom: 0;吗?

标签: html css carousel


【解决方案1】:

您可以使用bottom:0px

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

【讨论】:

    猜你喜欢
    • 2012-11-15
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-04-20
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多