import { Globals } from "./index"; /** * The non-standard **`-moz-float-edge`** CSS property specifies whether the height and width properties of the element include the margin, border, or padding thickness. * * **Initial value**: `content-box` */ export type MozFloatEdgeProperty = Globals | "border-box" | "content-box" | "margin-box" | "padding-box";