CSS 参考手册
CSS background-blend-mode 属性
混合模式
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> body { background-color: yellow; } div { width: 290px; height: 69px; background-size: 290px 69px; background-repeat: no-repeat; background-image: linear-gradient(to right, green 0%, white 100%), url("/examples/logo.png"); background-blend-mode: color-dodge; } </style> </head> <body> <div></div> <p><b>注意:</b> Internet Explorer 不支持 background-blend-mode 属性。</p> </body> </html>
运行结果:
点击运行 »