TABLE-LAYOUT
The table-layout property controls the algorithm used to lay out the table cells, rows, and columns.
SYNTAX
CSS
table-layout: value;
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