use*_*986 2 html css caption carousel twitter-bootstrap
我使用Twitter Bootstrap 2.3.2创建了一个Carousel图像,但是当在较小的屏幕设备上调整浏览器/查看时,标题背景会失去它的不透明度.
可以在bootstrap网站上看到一个示例(尝试将浏览器调整为移动屏幕大小,标题背景更改为纯色).
是什么造成的?
怎么能被覆盖?
您可以调整CSS中的不透明度,其中0.35是不透明度.数字越大 - >不透明度越低
.carousel-caption {
background: rgba(0, 0, 0, 0.35);
}
Run Code Online (Sandbox Code Playgroud)