-2

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

<div>VALUES</div>

enter image description here

FeelRightz
  • 2,777
  • 2
  • 38
  • 73

2 Answers2

0

Use writing-mode and text-orientation properties

 div 
 {
 writing-mode: vertical-rl;
 text-orientation: upright;
  }
<div>VALUES</div>
Jaswinder Kaur
  • 1,606
  • 4
  • 15
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
  • 91,784
  • 22
  • 134
  • 156