import { Globals, SelfPosition, StringHack } from "./index"; /** * The CSS **`place-items`** shorthand property sets the `align-items` and `justify-items` properties, respectively. If the second value is not set, the first value is also used for it. * * --- * * _Supported in Flex Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **59** | **45** | n/a | n/a | n/a | * * --- * * _Supported in Grid Layout_ * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **59** | **45** | n/a | n/a | n/a | * * --- * * @see https://developer.mozilla.org/docs/Web/CSS/place-items */ export type PlaceItemsProperty = Globals | SelfPosition | "baseline" | "normal" | "stretch" | StringHack;