Visit Mozilla.org

CSS:table-layout

From MDC

« CSS Reference

[edit] Summary

table-layout property defines the algorithm to be used to layout the table cells, rows, and columns. If "fixed" is the value specified, user agents should use "fixed layout algorithm". Else user agents may use any algorithm, like the one with rendering speed instead of precision.

[edit] Syntax

table-layout: inherit | auto | fixed 

[edit] Values

inherit
auto
fixed 
Use the fixed table layout algorithm

[edit] Examples

View Live Examples

.contentbox {
  table-layout: fixed;
}

[edit] Notes

[edit] Specifications

[edit] Browser compatibility

Browser Lowest Version
Internet Explorer ?
Firefox ?
Netscape ?
Opera ?
Safari ?

[edit] See also

caption-side table-layout border-collapse border-spacing empty-cells speak-header