Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Anchor and image inside of div Reply To: [Solved] Anchor and image inside of div

#204586
Paulie_D
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;

http://codepen.io/Paulie-D/pen/OVvPEQ