views:

15

answers:

1

I just downloaded the latest version of Opera. Is there a way to make my elements (div tags) rotate with CSS3?

A: 

According to this document on the Opera Developer Community, something like this should work:

div {
    -o-transform: rotate(30deg);
}

Don't forget properties for other browsers (-moz-transform, -webkit-transform) if you need cross-browser support!

You
Amen Brother... I just found the link too: http://samuli.hakoniemi.net/cross-browser-rotation-transformation-with-css/Many thanks.Erik
Erik