Table Caption Position
Set position of a table’s caption (top or bottom).
Usage:
@table caption-*;
Reference
shilp.config.js/** @type {import('shilpcss/types').ShilpConfig} */ const shilpConfig = { source: "react", properties: { table: { caption: { property: "caption-side: <v><i>;", values: { top: "top", bottom: "bottom", }, }, }, }, }; export default shilpConfig;