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’ve noticed that in Firefox and Edge 16 (the upcoming version with full Grid support), when you have a bunch of columns clamped with fit-content(), the columns don’t stretch when there is more space available in the grid container. In Chrome, they do.
This isn’t a big problem, since, when I’m restricting the max size with fit-content(), I don’t want the tracks to extend beyond this size, so I can just set justify-content: start to disable stretching explicitly.
The text was updated successfully, but these errors were encountered:
I think Firefox has this one correct, WebKit is showing the same behaviour as Chrome. Anyway it is definitely an interop problem so I'll add it to the list.
Code:
Demo: https://codepen.io/simevidas/pen/LjLJgo?editors=0100
I’ve noticed that in Firefox and Edge 16 (the upcoming version with full Grid support), when you have a bunch of columns clamped with
fit-content()
, the columns don’t stretch when there is more space available in the grid container. In Chrome, they do.This isn’t a big problem, since, when I’m restricting the max size with
fit-content()
, I don’t want the tracks to extend beyond this size, so I can just setjustify-content: start
to disable stretching explicitly.The text was updated successfully, but these errors were encountered: