import { StringHack, Globals } from "./index"; /** * The **`vertical-align`** CSS property sets vertical alignment of an inline or table-cell box. * * **Initial value**: `baseline` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/vertical-align */ export type VerticalAlignProperty = | Globals | TLength | "baseline" | "bottom" | "middle" | "sub" | "super" | "text-bottom" | "text-top" | "top" | StringHack;