CSS Vertical Text

By  on  

Almost every HTML element we create is thought of in the frame of horizontal.  We pay much more attention to widths than we do heights, especially when it comes to text within them. Sometimes we do, however, want to display element text in a vertical fashion.  In the old days of crippled Internet Explorers, this was mostly a losing battle.  These days, however, vertical text is a breeze.  Here's how to do it!

The CSS

Vertical text is accomplished easily these days with CSS transforms:

.vertical-text {
	transform: rotate(90deg);
	transform-origin: left top 0;
}

Depending on which direction you'd like the text to display vertically, the rotation will be different, but it's that rotate value which will make the text vertical.  Here's a helpful tip:

.vertical-text {
	float: left;
}

Floating the element will essentially emulate an auto width!

CSS transforms make loads possible, and are much more powerful than simply turning text vertical, but with the code provided above, the job is done.  Isn't progress grand?

Recent Features

  • By
    Welcome to My New Office

    My first professional web development was at a small print shop where I sat in a windowless cubical all day. I suffered that boxed in environment for almost five years before I was able to find a remote job where I worked from home. The first...

  • By
    From Webcam to Animated GIF: the Secret Behind chat.meatspac.es!

    My team mate Edna Piranha is not only an awesome hacker; she's also a fantastic philosopher! Communication and online interactions is a subject that has kept her mind busy for a long time, and it has also resulted in a bunch of interesting experimental projects...

Incredible Demos

  • By
    Advanced CSS Printing – Using JavaScript Double-Click To Remove Unwanted DIVs

    Like any good programmer, I'm constantly searching around the internet for ideas and articles that can help me improve my code. There are thousands of talented programmers out there so I stumble upon some great articles and code snippets that I like to print out...

  • By
    CSS @supports

    Feature detection via JavaScript is a client side best practice and for all the right reasons, but unfortunately that same functionality hasn't been available within CSS.  What we end up doing is repeating the same properties multiple times with each browser prefix.  Yuck.  Another thing we...

Discussion

  1. MaxArt

    To create vertical text for IE8 and older, you can rely on the CSS property writing-mode: tb-rl; eventually adding the legacy filter: flipv fliph;

  2. Lewis Walsh

    This is great. Though I tend to think of vertical text as the orientation of the letters being upright, just beneath each other.

  3. You sir, have always something cool here!

    Greetz

  4. For RTL langs, rotate -90deg

  5. Gurmukh

    display: inline-block; also works instead of float: left;

  6. Jozef Remen

    What about vertical text with letters not rotated, just every one below another? Like:
    R
    O
    T
    A
    T
    E

    I think this really can only be achieved with JS to wrap each letter to and then:

    .vertical-text span {transform: rotate(-90deg)}
    

    I highly doubt it’s possible just with CSS

  7. isti37

    It’s possible, just create a container with the fixed width of one letter size according to the size of the font and the text will wrap line by line (letter by letter) if you set word-wrap to break-word.

  8. Jozef Remen

    Isti37: great solution, very elegant. Thanks!

  9. Add this css also to help complete the experience:

    .vertical-text {
        ...
        cursor: vertical-text;
    }
    
  10. @Jozef Remen props! The only issue is spaces between words this way. They are huge and line-height only works as letter spacing. I guess you’d have to add for each return line. Any other ideas?

  11. With CSS, how would I rotate the “Signup” text?

    #yjsg_sidepanel_open:after {
            content: "\Signup";
    }
  12. huda

    how do I show the heading in 2 lines when rotating text?

  13. Mister

    Try to squeeze your vertical text for example into 4% width DIV and it won’t work. I wanted to make a vertical thin text line with width=4%; and height=100%; (height=vertical so I thought I’d be fine) but it takes the real width of your !horizontal! text and simply rotates it. Thus, all your neighboring divs are completely messed up. You have to measure (somehow?) and assign the width of your horizontal text first and only then you will get the mess this solution creates, otherwise it won’t work at all. Awkward. This method will only work OK if the width property of the place where you want to set your vertical text to this way doesn’t matter.

  14. .texto-vertical-3 {
      width:20px;
      word-wrap: break-word;
      text-align:center;
    }
    
  15. Facundo Corradini

    For those wanting non-rotated, one letter below the other vertical text, try this little hack:
    Use “word-wrap:break-word” to allow separation of letters between lines, and declare the width to the same value as your font-size (e.g: 1em)
    That will get you 90% of the way there, but some letters like “i” will still be shown 2 in the same line. Adding padding to just a tad less than your width while using border box box-sizing will force it to show 1 and only 1 letter per line.

    p.vertical {
        word-wrap: break-word;
        width:1em;
        padding:0.9em;
        box-sizing:border-box;
        text-transform:uppercase;
    }
    

    You’ll probably want to use “vertical align: top” and “display:inline-block” to correctly position the text and surrounding elements.

    CodePen example: http://codepen.io/facundocorradini/pen/LxJVNQ

  16. Artemisia

    I was able to get the ‘one letter under another’ without the smaller letters getting on one line AND have it recognize the spacing between words with this css code:

    width:1em;
    word-break:break-word;
    float:left;
    letter-spacing:1em;
    white-space:pre-wrap
    

    JFiddle: https://jsfiddle.net/costumingdiary/q1zsqewd/

  17. FS_FireStorm

    text-orientation + writing-mode also good combination for non-break letter text 90deg with no big space problem

     text-orientation: mixed;
     writing-mode: vertical-rl;
    
  18. This code was a lifesaver for me for button testing. Although the client didn’t end up using it, it was still extremely helpful for the vertical text test. Thank you!

  19. Also mention that “word-break” shouldn’t be set to “break-word”

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