Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can't believe no one ever asked this so I just assume I don't know the correct name for what I want. I'd like to have a text like jelly to be vertical aligned like this:

j
e
l
l
y

Is there a cross browser solution?

share|improve this question
Do you want the one on left or right? thinkingwithtype.com/images/Thinking_with_Type_Text_22.gif – nhahtdh May 26 '12 at 17:50
@nhahtdh I want the one on the left – Jeffrey May 26 '12 at 17:51

2 Answers

up vote 4 down vote accepted

Here is an article that details several ways to accomplish this with both CSS and javascript along with the pros and cons of each.

http://net.tutsplus.com/tutorials/html-css-techniques/the-easiest-way-to-create-vertical-text-with-css/

Hope you find it useful.

share|improve this answer

You can write like this:

p{
    width:5px;
    word-wrap:break-word;
}

Check this http://jsfiddle.net/TWb9j/

share|improve this answer
Since break-word is part of the CSS3 spec it won't be compliant across all browsers. – gizmovation May 26 '12 at 17:53
also, if it's several words with spaces, you'll need to change spaces with   – DaneSoul May 26 '12 at 17:54
@gizmovation who said break-word is part of css3. Check this developer.mozilla.org/en/CSS/word-wrap – sandeep May 26 '12 at 17:56
@DaneSoul can you show me an example what you want to say – sandeep May 26 '12 at 18:00
@sandeep I must be missing something. Doesn't the article you linked show that word-wrap:break-word IS css3? Here is another link to show when different css props were introduced. w3schools.com/cssref/default.asp – gizmovation May 26 '12 at 18:01
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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