properties
changelog

Table Caption Position

Set position of a table’s caption (top or bottom).

Usage:

  • @table caption-*;

Reference

shilp.config.js
const shilpConfig = {
	source: "react",

	properties: {
		table: {
			caption: {
				property: "caption-side: <v><i>;",
				values: {
					top: "top",
					bottom: "bottom",
				},
			},
		},
	},
};

export default shilpConfig;