Search code examples
htmlcsstwitter-bootstrapvertical-text

Bootstrap vertical writing


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?


Solution

  • You can do something like this:

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