Type Alias FlexBasis<TLength>

FlexBasis:
    | Globals
    | TLength
    | "-moz-fit-content"
    | "-moz-max-content"
    | "-moz-min-content"
    | "-webkit-auto"
    | "auto"
    | "content"
    | "fit-content"
    | "max-content"
    | "min-content"
    | string & {}

Type Parameters

  • TLength = string & {} | 0