How can I align each character to vertical by using css ?
<div>VALUES</div>
Use writing-mode and text-orientation properties
div
{
writing-mode: vertical-rl;
text-orientation: upright;
}
<div>VALUES</div>
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>