The background-blend-mode Property

Note: Edge prior 79 do not support the background-blend-mode property.

Exported from Notepad++
<html><head><style> #myDIV { width: 400px; height: 400px; background-repeat: no-repeat, repeat; background-image: url("yog.jpg"), url("med.jpg"); background-blend-mode: luminosity; } </style></head> <body> <!-- normal|multiply|screen|overlay|darken|lighten|color-dodge|saturation|color|luminosity; --> <h1>The background-blend-mode Property</h1> <div id="myDIV"> </div> <p><b>Note:</b> Edge prior 79 do not support the background-blend-mode property.</p> </body></html>