import { StringHack, Globals } from "./index"; /** * The `scroll-padding-block` property is a shorthand property which sets the scroll-padding longhands for the block dimension. The scroll-padding properties define offsets for the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or simply to put more breathing room between a targetted element and the edges of the scrollport. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **69** | No | No | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block */ export type ScrollPaddingBlockProperty = Globals | TLength | StringHack;