import { StringHack, Globals } from "./index"; /** * The **`background-position-x`** CSS property sets the initial horizontal position for each background image. The position is relative to the position layer set by `background-origin`. * * **Initial value**: `left` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | Yes | **49** | Yes | **12** | **6** | * * @see https://developer.mozilla.org/docs/Web/CSS/background-position-x */ export type BackgroundPositionXProperty = Globals | TLength | "center" | "left" | "right" | "x-end" | "x-start" | StringHack;