import { Globals } from "./index"; /** * The **`isolation`** CSS property determines whether an element must create a new stacking context. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **41** | **36** | Yes | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/isolation */ export type IsolationProperty = Globals | "auto" | "isolate";