import { Globals, Box, StringHack } from "./index"; /** * The **`background-clip`** CSS property sets whether an element's background `` or `` extends underneath its border. * * **Initial value**: `border-box` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **4** | **3** | **12** | **9** | * * @see https://developer.mozilla.org/docs/Web/CSS/background-clip */ export type BackgroundClipProperty = Globals | Box | StringHack;