vote up 0 vote down star
1

Hi, i want to rotate a single word of text by 90 degrees cross-browser (>= ie6, >= ff2, webkit).

flag

45% accept rate
2  
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. – The Wicked Flea Jul 3 at 21:13

3 Answers

vote up 1 vote down

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... */
}
link|flag
thanks, but ff 2 would look horrible. – usr Jul 3 at 21:09
FF2 wouldn't do anything, it doesn't interpret -transform. – The Wicked Flea Jul 3 at 21:12
so the vertical menu would be extremely wide. – usr Jul 3 at 21:33
vote up 0 vote down

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: http://www.dns4.nl/pagina/html%5Fcode/vertikale%5Ftekst.html

comment for xkcd150 [quote] Problem is, that's relying on the canvas element. – xkcd150 Sep 20 at 10:13

[/quote]

No, the procedure isn't relying on the canvas element.

link|flag
Problem is, that's relying on the canvas element. – xkcd150 Sep 20 at 10:13
vote up 0 vote down

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]-->
link|flag

Your Answer

Get an OpenID
or

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