In my design, there is a circular div (border-radius: 50%
) that includes two smaller divs transformed to look like segments of a circle. To achieve this effect, I have set overflow: hidden
on the parent container (the outer circle):
I am trying to change the background color of the circle segments on mouse hover. This functionality works as expected in Firefox and IE, but Chrome seems to be ignoring the overflow: hidden
property of the parent container when hovering over them.
Here is the jsFiddle link for reference: http://jsfiddle.net/rFrcu/
Any suggestions or solutions would be greatly appreciated!