Create cool and powerful image masking via CSS. On background URL property, please make sure silhouette image in jpg for the mask as located in second URL in the property.
DEMO
CSS
section { width: 300px; height: 300px; background: url("https://picsum.photos/id/10/1080/1080.jpg"), url("https://i.pinimg.com/originals/21/96/44/219644d4cb995ddd20f9b5516960e50b.jpg"); background-blend-mode: screen; background-size: contain; background-position: center; background-repeat: no-repeat; }
Comments
Post a Comment