import { Globals, SelfPosition, StringHack } from "./index"; /** * The CSS **`justify-self`** property set the way a box is justified inside its alignment container along the appropriate axis. * * **Initial value**: `auto` * * --- * * _Supported in Flex Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **45** | **10.1** | **16** | No | * * --- * * _Supported in Grid Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **45** | **10.1** | **16** | No | * * --- * * @see https://developer.mozilla.org/docs/Web/CSS/justify-self */ export type JustifySelfProperty = Globals | SelfPosition | "auto" | "baseline" | "left" | "normal" | "right" | "stretch" | StringHack;