1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
<!DOCTYPE HTML> <html> <style> .reftest { width: 100px; height: 100px; background-size: 100px 100px, 100px 100px; background-repeat: no-repeat; } .blend { background-color: rgb(255,255,0); background-blend-mode: difference; } .gif { background-image: url('as-image/red_green.gif'); } </style> <body> <div class="reftest blend gif"></div> </body> </html>