I am having getting a weird bug when I use a combination of overflow, border-radius, and transition. I have a div with an img inside o
overflow
border-radius
transition
I had the same exact issue. Adding this to the parent container solved it for me (this is a LESS mixin).
.transitionfix() { -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0) }