实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS background-blend-mode color 实例 - 自学教程(runoops.com)</title> <style> #myDIV { width: 290px; height: 69px; background-size: 290px 69px; background-repeat: no-repeat; background-image: linear-gradient(to right, yellow 0%, white 100%), url('//demo.runoops.com/static/img/logo.png'); background-blend-mode: color; } </style> </head> <body> <div id="myDIV"> 自学教程 —— runoops.com </div> <p><b>注意:</b> Internet Explorer 不支持 background-blend-mode 属性。</p> </body> </html>
运行结果: