background-blending-moz-element.html (383B)
1 <!-- 2 Any copyright is dedicated to the Public Domain. 3 http://creativecommons.org/publicdomain/zero/1.0/ 4 --> 5 <!DOCTYPE html> 6 <html> 7 <head> 8 <style> 9 10 div { 11 height: 10px; 12 } 13 14 #b { 15 background: rgba(0,255,0,.5); 16 } 17 #c { 18 background: -moz-element(#b); 19 background-blend-mode: difference; 20 } 21 22 </style> 23 </head> 24 <body> 25 <div id="b"></div> 26 <div id="c"></div> 27 </body> 28 </html>