透明背景图片

Avatar of Chris Coyier
Chris Coyier

CSS 中没有 background-opacity 属性,但您可以通过插入一个与后面元素大小完全相同的伪元素并设置常规的不透明度来模拟它。

div {
  width: 200px;
  height: 200px;
  display: block;
  position: relative;
}

div::after {
  content: "";
  background: url(image.jpg);
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;   
}