源代码:
下载代码
AI 编程工具
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>菜鸟教程(runoob.com)</title> <style> .container { background-color: yellow; padding: 15px; } .container img { mix-blend-mode: darken; } </style> </head> <body> <h2>mix-blend-mode 属性</h2> <p>mix-blend-mode 属性描述了元素的内容需要与父元素的背景颜色进行混合:</p> <div class="container"> <img src="pineapple.jpg" alt="pineapple"> </div> <p><strong>注意:</strong>Internet Explorer 或 Edge 浏览器不支持 mix-blend-mode 属性。</p> </body> </html>
运行结果: