KC's Workspace
    Preparing search index...

    A value for the grid shorthand property.

    <'grid-template'> | <'grid-template-rows'> / [ auto-flow && dense? ] <'grid-auto-columns'>? | [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>

    Explicit and implicit values may not be combined.

    interface Grid {
        areas: GridTemplateAreas;
        autoColumns: TrackSize[];
        autoFlow: GridAutoFlow;
        autoRows: TrackSize[];
        columns: TrackSizing;
        rows: TrackSizing;
    }
    Index

    Properties

    Explicit grid template areas.

    autoColumns: TrackSize[]

    The grid auto columns.

    autoFlow: GridAutoFlow

    The grid auto flow.

    autoRows: TrackSize[]

    The grid auto rows.

    columns: TrackSizing

    Explicit grid template columns.

    Explicit grid template rows.