Question

I am new to css3 transitions so the fix is probably easy for you. I am busy with a new website where i want to rotate some images. In a new html document it works, but when i try to implement it to my website it does nothing. www.jsfiddle.net/NXRvB/

Était-ce utile?

La solution

You have a negative z-index on #circelwrap which will prevent your :hover because you are moving the element behind its container.

#circelwrap {

    z-index: -1;
}

remove this and it works.

DEMO

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top