You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The outer max-content width of a table-cell in a non-constrained column is max(min-width, width, min-content width, min(max-width, max-content width)) adjusted by the cell intrinsic offsets.
A column is constrained if its corresponding table-column-group (if any), its corresponding table-column (if any), or any of the cells spanning only that column has a computed width that is not "auto", and is not a percentage.
The constrained definition implies that if a table-cell is in a non-constrained column, it has width: auto. But then why does the outer max-content width definition pasted above include width if it's always auto? Just redundant or am I missing something, perhaps related to column spanning? In that vein, should
table-cell in a non-constrained column
be changed to
table-cell that originates in a non-constrained column
Otherwise, if the concept of in a has been defined, could that get a link to the definition?
The text was updated successfully, but these errors were encountered:
(Stems from #2802)
https://drafts.csswg.org/css-tables-3/#outer-max-content says
https://drafts.csswg.org/css-tables-3/#constrainedness says
The
constrained
definition implies that if a table-cell is in a non-constrained column, it haswidth: auto
. But then why does theouter max-content width
definition pasted above includewidth
if it's always auto? Just redundant or am I missing something, perhaps related to column spanning? In that vein, shouldbe changed to
Otherwise, if the concept of in a has been defined, could that get a link to the definition?
The text was updated successfully, but these errors were encountered: