import { Globals, StringHack } from "./index"; /** * The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased. * * **Initial value**: `over right` * * | Chrome | Firefox | Safari | Edge | IE | * | :----------: | :-----: | :-----------: | :--: | :-: | * | **25** _-x-_ | **46** | **6.1** _-x-_ | n/a | No | * * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position */ export type TextEmphasisPositionProperty = Globals | StringHack;