table-layout
The table-layout CSS property controls the algorithm used to lay out the table cells, rows, and columns.
CSS
JS
object.style.tableLayout = "value";
Values
<'table-layout'> = auto | fixed
auto
Automatically specified by the user agent.
fixed
The content of its table-cells is ignored for the purpose of width computation.
Initial
auto
fixed
JS