Clip Path Image
<!DOCTYPE html> <html> <head> <title>Clip Path</title> </head> <body> <section></section> </body> </html> <style type="text/css"> *{ margin: 0px; padding: 0px; box-sizing: border-box; } section{ position: relative; width: 100%; min-height: 100vh; background: url(bg.jpg); background-size: cover; } section:before{ content: ''; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background: url(splash.jpg); background-size: 1800px; background-position: center; mix-blend-mode: screen; } </style>