2

Currently working on this website and for some reason on safari and chrome the transition on :hover of the round images overflows even when set to overflow: hidden.

enter image description here

Any help would be greatful.

benbyford
  • 603
  • 1
  • 8
  • 18

1 Answers1

1

I found the solution here.

Add this properties to your .mix-img class:

 -webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0)
Community
  • 1
  • 1
trkaplan
  • 3,217
  • 2
  • 23
  • 26
  • -moz- isn't needed and it renders ok anyway. chrome seems to be working fine now but i think Safari hates the world. wish webkit was as good as moz at rendering – benbyford Jun 02 '14 at 19:48
  • still having issues with rending in safari, seems to hate any sort of transition I through at it :( – benbyford Jun 04 '14 at 15:11