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