Scott Gale Scott N. Gale
Vermont
Scott Gale's RSS Feed Scott Gale's LinkedIn Page Scott Gale's Facebook Page Scott Gale's Twitter Page

CSS Vertical Text

March 1st, 2010 - by Scott Gale - 16 Comments, Add »

Many people have written about the potential for vertical text in CSS so I wanted to try it out for myself. By using the technique described below I was able to achieve this effect:

*Disclaimer: This doesn’t work in old Opera versions, but does work in Opera 10.5. This also works in IE6+, FF, and Webkit based browsers, so that is pretty encompassing.

Here is the basic markup:

<p>CSS Vertical Text</p>

I wanted to try to do my best to exclude IE browser checks and conditional checks. So this example handles all browsers mentioned previously with a single CSS block:


p.css-vertical-text {
	color:#333;
	border:0px solid red;
	writing-mode:tb-rl;
	-webkit-transform:rotate(90deg);
	-moz-transform:rotate(90deg);
	-o-transform: rotate(90deg);
	white-space:nowrap;
	display:block;
	bottom:0;
	width:20px;
	height:20px;
	font-family: ‘Trebuchet MS’, Helvetica, sans-serif;
	font-size:24px;
	font-weight:normal;
	text-shadow: 0px 0px 1px #333;
}

Also, if I can stay away from IE filters I like too, but it’s worth mentioning that if you have an specific rotation, you have to use the IE filter:

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

Where 0, 1, 2, 3 correlate to 0, 90, 180, and 270 respectively.

So I tried to keep this one simple, but lining everything up in different browsers can be a pain because of the way each browser interprets the spacing.

Information for this post was pulled from the following places:

http://www.thecssninja.com/css/real-text-rotation-with-css

http://snook.ca/archives/html_and_css/css-text-rotation

16 Responses to “CSS Vertical Text”

  1. Charles (more than a month ago)

    Very nice. Thank you very much.

  2. PSD to WordPress (more than a month ago)

    I just wanted to say THANK YOU for this! I have been looking for something like this for a very long time and other solutions I have found work but are very limited.

    This worked like a charm the first time around and with a little playing around with the CSS I got it to do just exactly what I wanted.

    Once again thank you very much.

  3. admin (more than a month ago)

    My pleasure. Glad that you guys got something out of it!

  4. me (more than a month ago)

    I don’t believe this works in Firefox 3.0

  5. admin (more than a month ago)

    Yes that’s true, FireFox 3.0, which makes up <1% of traffic this will not work on. Sometimes you just have to move forward though :-)

  6. Bas (more than a month ago)

    Cheers mate!!! U rule!

  7. Phillip Haydon (more than a month ago)

    -o-transform: rotate(90deg);

    Works in Opera too :)

  8. Scott Gale (more than a month ago)

    Excellent thanks Phillip I will add that to the code.

  9. Scott Gale (more than a month ago)

    Updated the code to include Opera 10.5.

  10. Luke (more than a month ago)

    Cheers Scotty

  11. janjula (more than a month ago)

    THX mate, thats what i was looking for….

  12. martijn (more than a month ago)

    Dude, you are a hero.

  13. arungandhi (more than a month ago)

    very nice. Thanks. :)

  14. Pascal (more than a month ago)

    I got Firefox 3.0.19 on Mac OS X 10.5.8 and it doenst work. My Safari can show the effect but Firefox cant.

  15. Scott Gale (more than a month ago)

    Pascal, there were certain older versions of FireFox where this technique does not work, but I choose to look forward as those are very small traffic segments. Thanks for mentioning the specifics.

  16. Marti (more than a month ago)

    Is there some way to convince such vertical text to NOT be as wide as it is long? I’m trying to make table header cells have vertical text, and quite apart from the atrocious things it does to the borders, Firefox is totally ignoring any width settings.

Leave a Reply