This is the print version of http://www.quackit.com/css/properties/css_table-layout.cfm
The CSS table-layout property allows you to fix the table layout so that the table renders much faster.
Without the table-layout property, on large tables, users won't see any part of the table until the browser has rendered the whole table. This can give the impression that your page loads very slowly. On the other hand, if you use the table-layout property, users will see the top of the table while the browser loads and renders rest of the table. This gives the impression that the page loads a lot quicker.
Check out the table-layout example.
| Syntax: | table-layout: <border-style1>, <border-style2> ... |
| Possible Values: |
|
| Initial Value: | auto |
| Applies to: | Tables and inline tables |
| Inherited: | No |
| Media: | Visual |
| Example: |
table { table-layout:fixed }...or, an inline example:
|