【发布时间】:2018-06-23 22:23:48
【问题描述】:
我只想为我的 jumbotron 中的背景图像提供 0.5 的不透明度。问题是我的 jumbotron 中的文本的不透明度也为 0.5。我怎样才能让背景只有不透明度而不是文字?
这是自定义 css 文件:
.jumbotron{
opacity: 0.5;
background-image: url("../img/colorful_planke.jpg");
background-size: cover;
}
.jumbo_text {
color: white;
}
这是 jumbotron html
<div class="jumbotron jumbo_text">
<h1 class="display-4 font-weight-bold text-center">Lorum Ipsom</h1><br>
<p class="lead text-center font-weight-bold">Lorum Ipsom | Lorum Ipsom | Lorum Ipsom | Lorum Ipsom |
Lorum Ipsom</p>
</div>
【问题讨论】:
标签: css bootstrap-4