import { Globals, StringHack } from "./index"; /** * The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :------------------------------------: | * | **48** | **48** | Yes | **15** | **11** _(-ms-text-combine-horizontal)_ | * * @see https://developer.mozilla.org/docs/Web/CSS/text-combine-upright */ export type TextCombineUprightProperty = Globals | "all" | "digits" | "none" | StringHack;