-2

How can I align each character to vertical by using css ?

<div>VALUES</div>

enter image description here

FeelRightz
  • 2,479
  • 2
  • 30
  • 60

2 Answers2

0

Use writing-mode and text-orientation properties

 div 
 {
 writing-mode: vertical-rl;
 text-orientation: upright;
  }
<div>VALUES</div>
Jaswinder Kaur
  • 450
  • 2
  • 9
0

You can achieve this with the writing-mode and text-orientation properties as follows:

div {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
<div>VALUES</div>
Robby Cornelissen
  • 81,630
  • 19
  • 117
  • 142