import { Globals } from "./index"; /** * The **`table-layout`** CSS property sets the algorithm used to lay out `` cells, rows, and columns. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **14** | **1** | **1** | **12** | **5** | * * @see https://developer.mozilla.org/docs/Web/CSS/table-layout */ export type TableLayoutProperty = Globals | "auto" | "fixed";