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
I think Gecko is right: table grid makes more sense, to be consistent with other sizing properties.
Blink seems to attempt to apply the ratio to the table grid, but is buggy and gets confused by the border.
WebKit applies the ratio to the table wrapper, transferring from the inline size of the grid (which in WebKit matches the inline size of the wrapper) to the block size of the wrapper, but not from the block size of the grid (which doesn't match the block size of the wrapper) to the inline size of the wrapper.
I think it should be transferred, like Blink&WebKit attempt to do (but they are buggy).
Gecko doesn't transfer it, but when adding min-width: min-content manually, then it looks as I'd expect.
The text was updated successfully, but these errors were encountered:
https://drafts.csswg.org/css-sizing-4/#aspect-ratio
This is not very clear, but my understanding is that it means
So it should apply to table boxes. But how so?
Does it actually apply to the table wrapper box, or to the table grid box?
I think Gecko is right: table grid makes more sense, to be consistent with other sizing properties.
Blink seems to attempt to apply the ratio to the table grid, but is buggy and gets confused by the border.
WebKit applies the ratio to the table wrapper, transferring from the inline size of the grid (which in WebKit matches the inline size of the wrapper) to the block size of the wrapper, but not from the block size of the grid (which doesn't match the block size of the wrapper) to the inline size of the wrapper.
Does it transfer the magical
min-content
minimum?I think it should be transferred, like Blink&WebKit attempt to do (but they are buggy).
Gecko doesn't transfer it, but when adding
min-width: min-content
manually, then it looks as I'd expect.The text was updated successfully, but these errors were encountered: