package mosaic

  1. Overview
  2. Docs

Module Mosaic_mlx.Grid_auto_flowSource

CSS grid-auto-flow property.

type t = Toffee.Style.Grid_auto_flow.t =
  1. | Row
    (*

    Place items by filling each row in turn.

    *)
  2. | Column
    (*

    Place items by filling each column in turn.

    *)
  3. | Row_dense
    (*

    Fill rows first using the dense packing algorithm.

    *)
  4. | Column_dense
    (*

    Fill columns first using the dense packing algorithm.

    *)