Home › Forums › CSS › [Solved] Anchor and image inside of div › Reply To: [Solved] Anchor and image inside of div
July 4, 2015 at 11:16 pm
#204586
Member
You don’t have the non-prefixed version of border-radius
listed (and it should come after the prefixed versions).
FF (and most up-to-date browsers) no longer require the prefix and so ignore the prefixed ones.
-webkit-border-radius: 50px;
-moz-border-radius: 50px;
-o-border-radius: 50px;
border-radius:50px;