The mix-blend-mode property specifies how an element's content should blend with its background:

juicesmall juicesmall juicesmall juicesmall juicesmall juicesmall juicesmall juicesmall juicesmall juicesmall juicesmall juicesmall juicesmall juicesmall
Exported from Notepad++
<html><head><meta name="viewport" content="width=device-width, initial-scale=1"> <style> .container { background-color: red; height: 900px; } img { width: 24%; height: auto; float: left; } .normal {mix-blend-mode: normal;} .multiply {mix-blend-mode: multiply;} .screen {mix-blend-mode: screen;} .overlay {mix-blend-mode: overlay;} .darken {mix-blend-mode: darken;} .lighten {mix-blend-mode: lighten;} .color-dodge {mix-blend-mode: color-dodge;} .color-burn {mix-blend-mode: color-burn;} .difference {mix-blend-mode: difference;} .exclusion {mix-blend-mode: exclusion;} .hue {mix-blend-mode: hue;} .saturation {mix-blend-mode: saturation;} .color {mix-blend-mode: color;} .luminosity {mix-blend-mode: luminosity;} </style> </head> <body> <p>The mix-blend-mode property specifies how an element's content should blend with its background:</p> <div class="container"> <img src="juicesmall.jpg" alt="juicesmall" class="normal" width="150" height="150" title ="normal"> <img src="juicesmall.jpg" alt="juicesmall" class="multiply" width="150" height="150" title ="multiply"> <img src="juicesmall.jpg" alt="juicesmall" class="screen" width="150" height="150" title ="screen"> <img src="juicesmall.jpg" alt="juicesmall" class="overlay" width="150" height="150" title ="overlay"> <img src="juicesmall.jpg" alt="juicesmall" class="darken" width="150" height="150" title ="darken"> <img src="juicesmall.jpg" alt="juicesmall" class="lighten" width="150" height="150" title ="lighten"> <img src="juicesmall.jpg" alt="juicesmall" class="color-dodge" width="150" height="150" title ="color-dodge"> <img src="juicesmall.jpg" alt="juicesmall" class="color-burn" width="150" height="150" title ="color-burn"> <img src="juicesmall.jpg" alt="juicesmall" class="difference" width="150" height="150" title ="difference"> <img src="juicesmall.jpg" alt="juicesmall" class="exclusion" width="150" height="150" title ="exclusion"> <img src="juicesmall.jpg" alt="juicesmall" class="hue" width="150" height="150" title ="hue"> <img src="juicesmall.jpg" alt="juicesmall" class="saturation" width="150" height="150" title ="saturation"> <img src="juicesmall.jpg" alt="juicesmall" class="color" width="150" height="150" title ="color"> <img src="juicesmall.jpg" alt="juicesmall" class="luminosity" width="150" height="150" title ="luminosity"> </div> </body> </html>