text-combine-upright
Description
The text-combine-upright property for CSS specifies the combination of multiple typographic character units into the space of a single typographic character unit.
Syntax
CSS
text-combine-upright: value;
JS
object.style.textCombineUpright = "value";
Values
<'text-combine-upright'> = none | all | [ digits <integer>? ]
none
No special processing.
all
Attempt to typeset horizontally all consecutive typographic character units within the box such that they take up the space of a single typographic character unit within the vertical line box.
digits
Attempt to typeset horizontally each maximal sequence of consecutive ASCII digits (U+0030–U+0039) that has as many or fewer digits than the specified integer such that it takes up the space of a single typographic character unit within the vertical line box. If the integer is omitted, it computes to 2. Integers outside the range 2-4 are invalid.
<integer>
Specifies one or more decimal digits (0-9).
Initial
none