import { Globals } from "./index"; /** * The **`caption-side`** CSS property puts the content of a table's `` on the specified side. The values are relative to the `writing-mode` of the table. * * **Initial value**: `top` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **8** | * * @see https://developer.mozilla.org/docs/Web/CSS/caption-side */ export type CaptionSideProperty = Globals | "block-end" | "block-start" | "bottom" | "inline-end" | "inline-start" | "top";