import { Globals } from "./index"; /** * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **47** | **49** | No | **12** | Yes | * * @see https://developer.mozilla.org/docs/Web/CSS/text-align-last */ export type TextAlignLastProperty = Globals | "auto" | "center" | "end" | "justify" | "left" | "right" | "start";