Rotate Elements with CSS Transformations

By  on  

CSS Transformations - Rotate

I've gone on a million rants about the lack of progress with CSS and how I'm happy that both JavaScript and browser-specific CSS have tried to push web design forward. One of those browser-specific CSS properties we love is CSS transformations. CSS transformations allow us to rotate elements on a 360 degree axis. Rotating elements is a breeze too -- take a look.

The Mozilla CSS

-moz-transform:rotate(120deg);

The CSS property is denoted as Mozilla-only with the "-moz" prefix. You can rotate your element any number of degrees. You may also use the "moz-transform-origin" property to set an origin for the transformation:

-moz-transform:rotate(120deg); -moz-transform:skewx(25deg) translatex(150px);

The WebKit CSS

-webkit-transform:rotate(120deg);

Obviously WebKit uses the "-webkit" prefix. The transformation syntax, however, is the same. WebKit originated CSS transformations; Mozilla implemented the WebKit standard.

The Opera CSS

-o-transform:rotate(120deg);

Opera uses its standard o- prefixed property to signal the transform.

The Internet Explorer CSS

Microsoft has implemented a -ms prefix for the transform:

-ms-transform:rotate(120deg);

The CSS snippet above works well within IE9, but IE8 and lower require some filter magic:

filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1.5);

Unfortunately these filters are very inexact and wont be reliably rotated.

That's about it. CSS transformations are not new but it's good to review them every once in a while. To this day I've not used CSS transformations on a project in production. Maybe you have a good example of modern CSS transformation usage you can share?

* Note: I did notice that WebKit has problems supporting rotated iFrame's. Mozilla did just fine.

Recent Features

  • By
    CSS Filters

    CSS filter support recently landed within WebKit nightlies. CSS filters provide a method for modifying the rendering of a basic DOM element, image, or video. CSS filters allow for blurring, warping, and modifying the color intensity of elements. Let's have...

  • By
    CSS vs. JS Animation: Which is Faster?

    How is it possible that JavaScript-based animation has secretly always been as fast — or faster — than CSS transitions? And, how is it possible that Adobe and Google consistently release media-rich mobile sites that rival the performance of native apps? This article serves as a point-by-point...

Incredible Demos

  • By
    iPhone Click Effect Using MooTools or jQuery

    One thing I love about love about Safari on the iPhone is that Safari provides a darkened background effect when you click a link. It's the most subtle of details but just enforces than an action is taking place. So why not implement that...

  • By
    HTML5 download Attribute

    I tend to get caught up on the JavaScript side of the HTML5 revolution, and can you blame me?  HTML5 gives us awesome "big" stuff like WebSockets, Web Workers, History, Storage and little helpers like the Element classList collection.  There are, however, smaller features in...

Discussion

  1. Nate

    I’d just like to point out that Opera supports -o-transform. It’s nice to have properties like this in CSS, even if it means retyping them three times just to get it to work cross-browser!

  2. Rich

    I generally use them as a hover event, normally with transitions as well. You can also use them to make carousel type effects – take a look at css3.bradshawenterprises.com/demos for two examples.

    The downside to using them for anything big is that in browsers with no support the effects don’t degrade nicely unless they are small (scale(1.05) on hover for instance).

    For an example not by me, panic’s blog makes pretty heavy use of them tok rotate each blog post slightly.

  3. Simon

    I tried to make some real nice post-it’s using CSS only. Gradients and shadow were great but the rotation has a real pain in the ass. Why ? Because all texts inside the rotated element are near to unreadable. I guess browsers still have to work on this one: rotating texts :/

  4. yeah, the text rotation stuff is really bad, does make it pretty unreadable at the moment. Even in the Webkit Nightlies it’s not ideal.

  5. jenny

    I’m doodling a JavaScript/mootools game of cards. thank you for this post – now I can fan the cards :D

  6. Not working with IE7

    we have to use this …

    progid:DXImageTransform.Microsoft.BasicImage(rotation=0)

    // rotation
    0 = 0º
    1 = 90º
    2 = 180º
    3 = 270º

    IE sucks!

  7. @duarte: Actually, check out http://css3please.com/ for a nicer IE-only alternative using a transformation matrix (look for the box_rotate section)

  8. http://moo4q.com !

    I use ’em there.

    As for IE DXImageTransform — it’s appearance is, shall we say, flippin’ ugly.

  9. pSouper

    does this mean you might be able to change pages by spinning the current page of the screen revealing the new page underneath (using ajax a of course)

  10. Ezra

    Any Idea howto apply this to an embedded youtube video? Any time ive tried it the Object refuses to display.

  11. Rakoda

    For rotation in older iE browsers you can better use the matrix transform filter.
    http://www.useragentman.com/blog/2010/03/09/cross-browser-css-transforms-even-in-ie/

  12. Josh

    The fractional rotation for IE mentioned here does not actually exists, only integers 0-3.

    To do a 45 degree, etc. rotation you have to use matrix translations…
    http://www.boogdesign.com/examples/transforms/matrix-calculator.html

  13. What about rotation and word wrapping the text at same time? I have a text that comes from DB. When the text is too long, one word stays over another. How to solve this?

    Thank you

  14. Brahim

    I am a complete noob. Do you think that this affect could be connected to a slider so that you could rotate the presentation in real time depending on the slider value? Could the content of the frame be a single image?

    • Honnza

      Sure. It can be done. Controlling the CSS style from javascript is easy (at least in jQuery). I have never built a custom slider, but I guess there are multiple ready-made solutions, including jQueryUI. In the worst case, you could kludge one from an overflowing div by listening to its scroll position.

  15. I’ve found that these CSS rules can be really flaky, seemingly insignificant changes can stop these working. Like a lot of devs I find it really useful to have a quick reference to help with my css rotation. Found this useful site which has a “copy and paste” code generator for CSS transform. http://www.cssrotate.com

  16. Hi,
    On this page:
    http://www.coursesweb.net/javascript/rotate-html-objects-div-span-image-jquery_t
    it is a tutorial about how to rotate Div, Images, and other HTML elements with jQuery, by any angle.
    Works also in IE 7+.

  17. When using css transformations it seems that when the page is printed, the transform is ignored.

    Any thoughts on this?

    Thanks,
    Scott

  18. Anuj

    Hi..
    This css is nt working on IE8 each of element..
    if you know the hack css plz tell

  19. Harpreet Singh Sahota

    Hello David,

    I was wondering how you able to rotate the social links 380deg:

    http://screencast.com/t/zpKWkwuLy3Y

    I copied the logic but it rotated slightly not as perfect as yours.
    I’ll be thankful if you clear this cloudy logic for me.

    Thanks
    @happysahota

  20. Shin

    IE Sucks, and Matrixes are awful, but there’s a way to make it dynamic passing degrees or radians using the function on this page. It doesn’t uses JQuery and its pretty well explained.

    http://kaisarcode.com/javascript-rotate

  21. If anyone is using ‘Font Awesome’ on their website – It is super easy to override their ‘fa-spin’ class to create your own infinitely rotating object.

    .fa-slow-spin {
    	animation: spin 10s infinite linear;
    }
    

Wrap your code in <pre class="{language}"></pre> tags, link to a GitHub gist, JSFiddle fiddle, or CodePen pen to embed!