CSS3 Rotate Animation

<img class=”image” src=”” alt=”” width=”120″ height=”120″> Cannot get this animated image to work, it is supposed to do a 360 degrees rotation. I guess something’s wrong with the CSS below, as it just stays still. .image { float: left; margin: 0 auto; position: absolute; top: 50%; left: 50%; width: 120px; height: 120px; margin-top: -60px; margin-left: … Read more

How to have multiple CSS transitions on an element?

It’s a pretty straightforward question but I can’t find very good documentation on the CSS transition properties. Here is the CSS snippet: .nav a { text-transform:uppercase; text-decoration:none; color:#d3d3d3; line-height:1.5 em; font-size:.8em; display:block; text-align:center; text-shadow: 0 -1.5em 0 rgba(255, 255, 255, 0.15); -webkit-transition: color .2s linear; -moz-transition: color .2s linear; -o-transition: color .2s linear; transition: color … Read more