table-layout
Use the table-layout property to make tables load much faster.
Usage:
style="table-layout: left|center|right;"
NOTES:
You will notice the benefits more on large tables. The reason this makes
tables load faster is because with traditional HTML, the browser had to
calculate every cell before finally rendering the table. When you set the
table-layout algorithm to fixed however, it only needs to look at the first
row before rendering the whole table. This means that your table will
need to have fixed column widths and row heights.
This reference was created for Innovyx by Steve Cartoon Q3 2007. All rights reversed.