【发布时间】:2021-03-05 07:46:39
【问题描述】:
我正在寻找一种方法来降低背景混合模式的不透明度。我的代码中的不透明度会影响颜色和图像。我希望它只影响混合模式。我想达到像中这样的效果
.example {
background-image: url(../assets/image.jpg);
background-size: cover;
background-color: rgb(77, 82, 86);
background-blend-mode: multiply;
opacity: 0.6;
}
【问题讨论】:
-
背景色:rgb(77, 82, 86, 0.6);
标签: html css background-blend-mode