【发布时间】:2018-09-30 20:27:49
【问题描述】:
我正在尝试制作一个与屏幕一样宽但背景图像略微变暗的 div,但它会使任何重叠的文本也变暗。如何更改此设置,以便只有背景图像变暗而不是任何覆盖的文本?
.venue-header-text {
font-size: 3.5em!important;
font-weight: 700!important;
color: white!important;
}
.inner-slider .slide {
padding: 100px 0 100px;
position: relative;
background-size: cover;
-moz-background-size: cover;
-webkit-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
color: white!important;
}
.slide-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6)!important;
}
<div class="text-center">
<section class="inner-slider hyr-section-height-override">
<div class="slide" style="background-image:url('/site-data/articles/venue1/header.jpg');">
<div class="container">
<h2 class="venue-header-text">VENUE 1</h2>
</div>
<div class="slide-overlay"></div>
</div>
</section>
</div>
【问题讨论】:
-
发布一个可运行,不工作的示例代码。您无法避免
opacity影响子元素,因此您必须创建一个结构,其中具有background-image的元素没有子元素。 -
z-index 也许?
-
@connexo 问题不在于影响孩子的不透明度,而是堆叠问题......解释具有误导性