gpt4 book ai didi

jquery - 更改 Jumbotron 不透明度并使其全宽而不影响字体和按钮

转载 作者:行者123 更新时间:2023-11-28 08:37:49 27 4
gpt4 key购买 nike

想问一下如何在不影响字体和按钮的不透明度的情况下,改变 Jumbotron 的不透明度使其全宽?

.jumbotron-special{
text-align: center;
background-attachment: scroll;
background-image: image-url('header-bg.jpg');
background-position: center center;
background-repeat: none;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
// how to only make background-image-opacity: 0.3;
}

最佳答案

您可以在另一个元素中添加背景并仅降低该元素的不透明度:

.jumbotron-special {
position: relative;
}
.jumbotron-special:after {
content : "";
display: block;
position: absolute;
top: 0;
left: 0;
background-image: url('header-bg.jpg');
width: 100%;
height: 100%;
opacity : 0.3;
z-index: -1;
}

关于jquery - 更改 Jumbotron 不透明度并使其全宽而不影响字体和按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27959757/

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