Can anyone help me create a Photoshop overlay effect on my website? My code works perfectly in Firefox, but it's not functioning correctly in Chrome. Here's the demo.
This is my current code:
HTML
<img src="http://lorempixel.com/output/fashion-h-c-614-631-5.jpg"/>
<div id="blend"></div>
CSS:
img{
max-width:100%;
height:auto;
}
#blend{
position:absolute;
top:0;
width:100%;
height:100px;
z-index:100;
background-color:#fff;
mix-blend-mode:overlay;
}