HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

table-layout

Description

The table-layout property for CSS 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

Examples

1 · auto

2 · fixed

3 · JS