import { StringHack, Globals } from "./index"; /** * The **`scroll-margin`** property is a shorthand property which sets all of the `scroll-margin` longhands, assigning values much like the `margin` property does for the `margin-*` longhands. * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **69** | No | **11** | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin */ export type ScrollMarginProperty = Globals | TLength | "auto" | StringHack;