I am trying to understand Japanese vertical htmls.
During my analysis i have found that in lot of places content has letter-spacing : <Negative value>
.
I have rarely used this css style in horizontal content but in JP it has used mostly with numbers.
span.tcy {
-webkit-text-combine: horizontal;
-epub-text-combine: horizontal;
text-combine: horizontal;
font-size: 0.9em;
line-height: 0.9em;
text-indent: 0;
letter-spacing: -1px;
}
and
.tcy {
-webkit-text-combine: horizontal;
-epub-text-combine: horizontal;
text-combine: horizontal;
font-size: 0.9em;
line-height: 0.9em;
text-indent: 0em;
letter-spacing: -1px;
}
Can any one explain me actual use case of letter-spacing css style and why it has been used mostly with Japanese vertical content to format numbers. Thanks.