I copied the exact code from w3school for the mask-image css property but it does not work. I'm getting a blank result. It's crazy. What am I missing?
.mask1 {
-webkit-mask-image: url(https://www.w3schools.com/css/w3logo.png);
mask-image: url(https://www.w3schools.com/css/w3logo.png);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
}
<div class="mask1">
<img src="http://www.spab-rice.com/spabrice/wp-content/uploads/2016/10/17a-free-wordpress.jpg" alt="Cinque Terre" width="600" height="400">
</div>