Pregunta

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/

¿Fue útil?

Solución

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top