Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
.logo {
margin:10px;
width:80px;
height:80px;
background-color:#00FF80;
-webkit-transition-duration: 2s;
}

.logo:hover {
-webkit-transition:rotate(360deg);
}

I am not sure what I am doing wrong...can somebody help?

share|improve this question
Tried that, still nothing :( – Lennard Boehnke Jul 24 '12 at 13:31
See this link - blog.vivekv.com/demo/rotate_image – Robin Maben Jul 24 '12 at 13:31
Not sure what the error was, but now it does work! Thank you! – Lennard Boehnke Jul 24 '12 at 13:33
Which browser? If it is FF, you have to include... -moz-transform: rotate(360deg); ... It works for me... – Shant Jul 24 '12 at 13:34
I use chrome, which is why I added -webkit – Lennard Boehnke Jul 24 '12 at 13:35
show 5 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.