-
Notifications
You must be signed in to change notification settings - Fork 756
Closed
Labels
Milestone
Description
When a grid item
- is found inside a container whose track is
mimax(min-content, 1fr)or1fr - has
height:100%
How do you compute the min-content height of the track?
- Usually in CSS we ignored
height:100%asheight:auto - However sometimes we resolve to
height:0during that phase
(for instance see table cells children havingoverflow:scroll)
https://wptest.center/#/gawww8 (replaced element)
https://wptest.center/#/v298y2 (in wrapper)
https://wptest.center/#/18osz0 (in wrapper with overflow)
Currently:
- Edge does
autoautoauto - Chrome/Firefox do
0autoauto - My feeling is we should all do
autoauto0
Is some behavior defined in the spec? Is it the behavior we want?