gpt4 book ai didi

html - CSS 调整图像背景而不是内容的亮度

转载 作者:行者123 更新时间:2023-12-04 00:10:44 28 4
gpt4 key购买 nike

该部分有一个背景图像,顶部有内容。
我只想降低该部分中背景图像的亮度,而不是降低内容的亮度。

我已经尝试了下面的方法,但是,亮度仍然适用于所有人,而不仅仅是图像。

<!-- Section -->
<div id="section1">
<div id="content">



<h1 class="heading">headline text</h1>
<h4 class="subHeading"> Sub-headline text</h4>

<!-- Call to action button -->
<br><br>
<button> Join our wait list </button>

</div>
#section1 {
background: url('../images/headerimage1.jpg') center center no-repeat;
background-size: cover;
-webkit-filter: brightness(0.5);
filter: brightness(0.5);
padding-top: 100px;
padding-bottom: 100px;
padding-left: 10%;
padding-right: 10%;
color: white;
text-align: center;
}

#content {
-webkit-filter: brightness(1);
filter: brightness(1);
}

最佳答案

您可以添加一个新的透明黑色元素,该元素仅覆盖背景,而 div 的内容位于其前面。

<div id="section1">
<div id="content">
</div>
</div>

CSS:
#section1 {
background: url('../images/headerimage1.jpg') center center no-repeat;
background-size: cover;
position: relative;
}

#content {
position: absolute;
}

#section1::before {
content: '';
display: block;
position: absolute;
background-color: #000;
opacity: 0.5;
width: 100%;
height: 100%;
}

关于html - CSS 调整图像背景而不是内容的亮度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36066085/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com