import { Globals, StringHack } from "./index"; /** * The **`contain`** CSS property allows an author to indicate that an element and its contents are, as much as possible, _independent_ of the rest of the document tree. This allows the browser to recalculate layout, style, paint, size, or any combination of them for a limited area of the DOM and not the entire page. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **52** | n/a | n/a | n/a | n/a | * * @see https://developer.mozilla.org/docs/Web/CSS/contain */ export type ContainProperty = Globals | "content" | "layout" | "none" | "paint" | "size" | "strict" | "style" | StringHack;