Is there a (portable) way to rotate text in a HTML table cell by 90°?

(I have a table with many columns and much text for the headings, so I'd like to write it vertically to save space.)

link|improve this question
feedback

10 Answers

up vote 48 down vote accepted
.box_rotate {
     -moz-transform: rotate(7.5deg);  /* FF3.5+ */
       -o-transform: rotate(7.5deg);  /* Opera 10.5 */
  -webkit-transform: rotate(7.5deg);  /* Saf3.1+, Chrome */
             filter:  progid:DXImageTransform.Microsoft.BasicImage(rotation=0.083);  /* IE6,IE7 */
         -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0.083)"; /* IE8 */
}

Taken from http://css3please.com/

link|improve this answer
That looks great -- I'll check out how well this works with various browsers. (And using 90deg, of course...) – Florian Jenn Mar 17 '10 at 20:36
gets clipped for me in ie, I created a new question for my specific case stackoverflow.com/questions/3225572/… – Karl Rosaen Jul 12 '10 at 2:48
4  
There is one issue though, the table heading th columns will not be increased in their width after rotation where necessary, so it looks glimpsy (tried in FF) :( – xaralis Nov 10 '10 at 8:53
1  
Yes, in firefox (don't know about the other browsers) either the <tr> gets rotated and the rest of the column doesn't adjust OR, you can put a <div> inside the <tr> and experiment with setting the <tr> POSITION to RELATIVE and the contained <div> to ABSOLUTE and it's -moz-transform-origin: 0 50%; This will correct its position. To get the correct width and height, you may need to use jquery or something to set the <tr>'s width and height to the <div>'s height and width (respectively). – Adripants Jul 26 '11 at 2:13
feedback

Alternate Solution?

Instead of rotating the text, would it work to have it written "top to bottom?"

Like this:

S  
O  
M  
E  

T  
E  
X  
T

I think that would be a lot easier - you can pick a string of text apart and insert a line break after each character.

This could be done via JavaScript or server-side - the latter would be accessible in mobile browsers. (I assume that's what you mean by "portable?")

Also the user doesn't have to turn his/her head sideways to read it. :)

Update

This thread is about doing this with jQuery.

link|improve this answer
feedback

Server-Side image creation?

You could use a server script to create an image of the rotated text and display that.

link|improve this answer
This is the easiest way to guarantee that your content will display exactly the way you need it to. For what it's worth, I made a generic handler in asp.net to create images using text from a query string parameter. It is fast and simple, and it avoids layout headaches. – hmqcnoesy Oct 26 '11 at 17:52
feedback

IE filters plus CSS transforms (Safari and Firefox).

IE's support is the oldest, Safari has [at least some?] support in 3.1.2, and Firefox won't have support until 3.1.

Alternatively, I would recommend a mix of Canvas/VML or SVG/VML. (Canvas has wider support.)

link|improve this answer
I agree with eyelidlessness. It's all very much a "hack" right now. Not quite ready for prime-time. – Diodeus Nov 7 '08 at 17:45
feedback

There is a quote in the original answer and my previous answer on the IE8 line that throws this off, right near the semi-colon. Yikes and BAAAAD! The code below has the rotation set correctly and works. You have to float in IE for the filter to be applied.

<div style="float: left; 
position: relative;
-moz-transform: rotate(270deg);  /* FF3.5+ */        
-o-transform: rotate(270deg);  /* Opera 10.5 */   
-webkit-transform: rotate(270deg);  /* Saf3.1+, Chrome */              
filter:  progid:DXImageTransform.Microsoft.BasicImage(rotation=3);  /* IE6,IE7 */          
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3); /* IE8 */           
"
>Count & Value</div>;
link|improve this answer
1  
+1 for pointing out necessity of float for this to work in IE. – RET May 23 '11 at 0:43
feedback

Unfortunately not, the closest you are going to get is rendering it in a Canvas, but I suspect that is not exactly as portable as your would like.

link|improve this answer
feedback

I'm afraid you're going to run into even more limitations, and an even more bleak response range, with a table than this person did in asking his similar question:

Vertical Elements in a Div

link|improve this answer
2  
No. Vertical alignment—what you referred—is not the same as vertically rotated. – Török Gábor May 5 '09 at 9:02
feedback

There is no easy way to accomplish this. This blog article describes a method that uses CSS, but which only works in IE, but it also proposes a workaround using SVG for other browsers. Perhaps you can use this in your application?

link|improve this answer
feedback

you can use sIFR to make it work. http://wiki.novemberborn.net/sifr3/

link|improve this answer
feedback
-moz-transform: rotate(7.5deg);  /* FF3.5+ */
-o-transform: rotate(7.5deg);  /* Opera 10.5 */
-webkit-transform: rotate(7.5deg);  /* Saf3.1+, Chrome */
filter:  progid:DXImageTransform.Microsoft.BasicImage(rotation=1);  /* IE6,IE7 allows only 1, 2, 3 */
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; /* IE8 allows only 1 2 or 3*/
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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