Quick References
      ADO
      ASP
      CSS2
      HTML
      JavaScript
      Jet SQL
      VBScript
      WML
      WMLScript
      WSH
      XHTML
      XML DOM
      XSLT

Features
      Knowledge Base
      Tutorials

Partners
     ZVON.ORG
     XML
     Planet Source Code
     VisualBuilder
     Web Design
     Your HTML Source
     XML/XSLT Forums
     ASPAlliance
     Scripts
     
     Programmers Heaven
     Tek-Tips Forums
     Developer Fusion
     Code Project










PROPERTY: table-layout

table-layout : auto | fixed
 
Compatibility: IE5.5
Version: Level 2
Inherited: Yes
 
The table-layout property allows you to choose the layout algorithm for constructing the table.
 
This is one of five Level 2 properties that specifically apply style to tables. The other four are border-collapse, border-spacing, caption-side, and empty-cells.
 
There are two type of layout algorithms, auto and fixed.
 
auto
 
The auto value dictates the use of the auto layout algorithm. In this algorithm, the layout is dependent upon the contents of the individual cells. This requires that the browser first access all of the table contents to determine the layout for each column before the table can be rendered. As a consequence, this algorithm is considered slower than the fixed algorithm.
 
fixed
 
The fixed value dictates the use of the fixed layout algorithm. In this algorithm, the horizontal layout is only dependent on the table's width, the width of the columns, the width of any borders, and the cell spacing. It does not depend on the content of the table cells.
 
Code:
table { table-layout: auto; }
 
or
 
<table style="table-layout: auto;">
...
</table>


 


Copyright 1999-2005 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information