package mosaic

  1. Overview
  2. Docs

Module Mosaic_mlx.OverflowSource

CSS overflow property.

type t = Toffee.Style.Overflow.t =
  1. | Visible
    (*

    Overflowing content is displayed beyond the element.

    *)
  2. | Clip
    (*

    Overflowing content is clipped at the element boundary.

    *)
  3. | Hidden
    (*

    Overflowing content is hidden; no scrolling.

    *)
  4. | Scroll
    (*

    Overflowing content is scrollable.

    *)