Can someone help me with circle-masking in different browsers? It's working fine on Chrome.
I need to make it work on Firefox and IE as well. Looking for a solution without using radius-border...
.circle {
-webkit-clip-path: circle(100px at 100px 100px);
clip-path: circle(100px at 100px 100px)
}
<img src="http://cp91279.biography.com/Leonardo-da-Vinci_A-Divine-Mind_HD_768x432-16x9.jpg" width="1024" height="768" alt="" class="circle"/>
.circle { -webkit-clip-path: circle(50% at 50% 10%); clip-path: circle(50% at 50% 10%); }