Re: CSS2.x fixed table layout

>     So I guess my question is actually about how cells and columns 
> interact; once that's answered, I can figure out how fixed-layout 
> tables will behave.  Oops, one other question: is only the first row 
> of a fixed-layout table used to determine widths, or are all rows 
> considered?

Only the first row is used for _widths_.  However it's not clear how the
number of columns is determined, e.g. in the following HTML markup:

<table style="table-layout: fixed; width: 200px">
  <tr>
    <td>Cell 1</td>
  </tr>
  <tr>
    <td>Cell 2</td>
    <td>Cell 3</td>
  </tr>
</table>

The HTML specification says that this table has two columns....  The CSS
specification is a little vague.  The question is, of course, "What
are the widths of the three cells?"  And what should happen if an
incremental reflow happens after the first row has been fetched off the
wire but before the second row has been fetched.

Boris
-- 
Economists state their GNP growth projections to the
nearest tenth of a percentage point to prove they have a
sense of humor.
                             -- Edgar R. Fiedler

Received on Friday, 4 October 2002 18:04:46 UTC