import { Globals } from "./index"; /** * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages. * * **Initial value**: `slice` * * | Chrome | Firefox | Safari | Edge | IE | * | :----------: | :-----: | :-----: | :--: | :-: | * | **22** _-x-_ | **32** | **6.1** | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/box-decoration-break */ export type BoxDecorationBreakProperty = Globals | "clone" | "slice";