---
title: "Table Layout | @table"
description: "Control table's dimentions with column sizing algorithm."
keywords: ["table", "layout", "algorithm", "cells"]
---
# Table Layout
Control table's dimentions with column sizing algorithm.
Usage:
- `@table layout-*;`
This page contains only the **property configuration reference**. Complete
documentation and usage examples will be added progressively in future updates.
---
## Reference
```js title="shilp.config.js"
const shilpConfig = {
source: "react",
properties: {
table: {
layout: {
property: "table-layout: ;",
values: {
auto: "auto",
fixed: "fixed",
},
},
},
},
};
export default shilpConfig;
```