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
With an explicit height: stretch, Blink and Gecko use it as an input for table layout, so each row becomes 44px so that the sum including gutters and borders is 100px. But then one row is collapsed, so this shrinks the outer height of the table to 54px. So the alignment container isn't filled.
WebKit doesn't support visibility: collapse (it's just treated as hidden).
Blink seems most reasonable to me.
The text was updated successfully, but these errors were encountered:
https://drafts.csswg.org/css-sizing-4/#stretch-fit-sizing
https://drafts.csswg.org/css-align/#valdef-justify-self-stretch
https://drafts.csswg.org/css2/#dynamic-effects
align-self: stretch
, others don't. See [css-align]normal
self-alignment for abspos tables should behave asstart
#11285.height: stretch
, Blink and Gecko use it as an input for table layout, so each row becomes 44px so that the sum including gutters and borders is 100px. But then one row is collapsed, so this shrinks the outer height of the table to 54px. So the alignment container isn't filled.visibility: collapse
(it's just treated ashidden
).Blink seems most reasonable to me.
The text was updated successfully, but these errors were encountered: