代码示例:(标识:cssref_background-blend-mode_4)
<!DOCTYPE html>
<html>
<head>
<style>
#myDIV { 
  width: 400px;
  height: 400px;
  background-repeat: no-repeat, repeat;
  background-image: url("/static/demo/images/tree.png"), url("/static/demo/images/paper.jpg");
  background-blend-mode: overlay;
}
</style>
</head>
<body>

<div id="myDIV"></div>

<p><b>注释:</b>79 之前的 Edge 不支持 background-blend-mode 属性。</p>

</body>
</html>
运行结果: