Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to rotate a single word of text by 90 degrees cross-browser (>= ie6, >= ff2, webkit). How can this be done?

share|improve this question
3  
There is no pure CSS you can use with cross compatibility. What I've got is all there is. You're better off with an image. – Robert K Jul 3 '09 at 21:13
1  
Vertical text crossbrowser is not so difficult. On the dns4.nl there is a solution that works even in opera. I tested it with all versions ie, mozilla and safari (also crown). the link is: dns4.nl/pagina/html_code/vertikale_tekst.html. comment for xkcd150: > Problem is, that's relying on the canvas element. – xkcd150 Sep 20 at 10:13 No, the procedure isn't relying on the canvas element. – user161269 Aug 22 '09 at 12:29
14  
This is a very real question and should not have been closed. It is a difficult one, but this does not make non-real! – Jukka K. Korpela Dec 30 '12 at 9:12
2  
This is a realy question. It's just missing a question mark. – John Fitzpatrick Jan 17 at 16:32
1  
@JohnFitzpatrick I just reformatted the question. I asked it in my early Stack Overflow days. Not sure why it is closed, though. Already voted for reopening. – usr Jan 17 at 18:10
show 6 more comments

closed as not a real question by Kev May 12 '12 at 16:44

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

5 Answers

up vote 77 down vote accepted

Updated this answer with recent information (from CSS Tricks). Kudos to Matt and Douglas for pointing out the filter implementation.

.rotate {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);

  /* also accepts left, right, top, bottom coordinates; not required, but a good idea for styling */
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;

  /* Should be unset in IE9+ I think. */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

Old answer:

For FF 3.5 or Safari/Webkit 3.1, check out: -moz-transform (and -webkit-transform). IE has a Matrix filter(v5.5+), but I'm not certain how to use it. Opera has no transformation capabilities yet.

.rot-neg-90 {
  /* rotate -90 deg, not sure if a negative number is supported so I used 270 */
  -moz-transform: rotate(270deg);
  -moz-transform-origin: 50% 50%;
  -webkit-transform: rotate(270deg);
  -webkit-transform-origin: 50% 50%;
  /* IE support too convoluted for the time I've got on my hands... */
}
share|improve this answer
thanks, but ff 2 would look horrible. – usr Jul 3 '09 at 21:09
FF2 wouldn't do anything, it doesn't interpret -transform. – Robert K Jul 3 '09 at 21:12
so the vertical menu would be extremely wide. – usr Jul 3 '09 at 21:33
9  
Microsoft "filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);" – Matt Jan 10 '11 at 23:07
1  
Unfortunately, IE9 (in standards mode!) applies both the -ms-transform-* styles, and the filter. In compatibility view, it only applies the filter. – Raumkraut Jan 9 at 12:44
show 4 more comments

I am using the following code to write vertical text in a page. Firefox 3.5+, webkit, opera 10.5+ and IE

.rot-neg-90 {
    -moz-transform:rotate(-270deg); 
    -moz-transform-origin: bottom left;
    -webkit-transform: rotate(-270deg);
    -webkit-transform-origin: bottom left;
    -o-transform: rotate(-270deg);
    -o-transform-origin:  bottom left;
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
share|improve this answer
Works on Chrome 5. Doesn't work on IE 8 "quirks" mode; does work on "IE8 Standards mode". – Asaf Bartov Sep 30 '10 at 20:06
Thanks for letting me know. Please post it here, if you find a way to have vertical Text in IE under quirks mode. – tchoesang Oct 1 '10 at 9:33

There is better and simplest way :)

"works in all browsers including IE6. You might have seen the solution to this problem in terms of images or even javascript but let’s see how we can achieve the same effect with just CSS or CSS2."

share|improve this answer
4  
This produces a vertical column of text, not a column of text that is rotated vertically. This solution produces a taller result (i.e., uses more page height), as the letters are stacked, rather than rotated. – Dave Jarvis Dec 16 '11 at 1:17
2  
That's the best Solution until all browsers support transformations. Basically this is a <div> with style of width:1em; The word you write needs to have spaces between the letters so they word-wrap – John May 7 '12 at 16:42
1  
Although this workaround may solve problems for some people. This is not a solution, it does not rotate text (which was the actual question). – Yeti May 10 '12 at 18:09
2  
Whilst this may theoretically answer the question, we would like you to include the essential parts of the linked article in your answer, and provide the link for reference. Failing to do that leaves the answer at risk from link rot. I'll give you a couple of days to improve the answer after which it'll be converted to a comment. – Kev May 12 '12 at 16:47
5  
With all due respect, I disagree with the author there. This is a bad bad solution. The day someone goes and changes the code to `width: 0.5em' is the day this thing breaks, and nobody (except MAYBE the original author) knows why. Working, but bad hack – Arnab Datta Jul 11 '12 at 7:18
show 2 more comments

I adapted this from http://snook.ca/archives/html_and_css/css-text-rotation :

<style>
    .Rotate-90
    {
        display: block;
        position: absolute;
        right: -5px;
        top: 15px;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
    }
</style>
<!--[if IE]>
    <style>
    	.Rotate-90 {
    		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    		right:-15px; top:5px;
    	}
    </style>
    <![endif]-->
share|improve this answer

I've had problems trying to do it in pure CSS - depending on the font it can look a bit rubbish. As an alternative you can use SVG/VML to do it. There are libraries that help make it cross browser with ease e.g. Raphael and ExtJS. In ExtJS4 the code looks like this:

    var drawComp = Ext.create('Ext.draw.Component', {
        renderTo: Ext.getBody(), //or whatever..
        height: 100, width: 100 //ditto..
    });
    var text = Ext.create('Ext.draw.Component', {
        type: "text",
        text: "The text to draw",
        rotate: {
            x: 0, y: 0, degrees: 270
        },
        x: -50, y: 10 //or whatever to fit (you could calculate these)..
    });
    text.show(true);

This will work in IE6+ and all modern browsers, however, unfortunately I think you need at least FF3.0.

share|improve this answer
1  
Loving the differentiation between IE6+ and all modern browsers - it reads as if you're saying any version of IE is not modern :) – ClarkeyBoy Sep 19 '12 at 19:13
@ClarkeyBoy I would say only IE10 is almost up to speed with other browsers, and only because forced gpu rendering and grid layout. You can't really cal IE a modern browser, because it updates x3-x10 times slower then every other browser. – skmasq Feb 1 at 23:57

Not the answer you're looking for? Browse other questions tagged or ask your own question.