Bootstrap vertical writing

Janis Jansen picture Janis Jansen · Dec 19, 2015 · Viewed 20.8k times · Source

I want to write text with Bootstrap, vertically but not like transform the text 90°. Vertical, but turned and hard to read.

enter image description here

But actually written like this: Vertical and not turned

enter image description here

I think there was a way to do this with Bootstrap? Do you know something?

Answer

CastenettoA picture CastenettoA · Dec 19, 2015

You can do something like this:

CSS
      .verticaltext{
           width:1px;
           word-wrap: break-word;
           white-space:pre-wrap; 
        }