minmax(0, 1fr)
patterns and avoid display: contents
on grid children.height
, min-height
, and overflow
settings to prevent Safari-specific layout collapses.If your CSS Grid layout is displaying incorrectly in Safari (both desktop and iPad), it's likely due to Safari's partial support of some grid features or known browser-specific quirks.
grid-template-rows
or grid-template-columns
isn't explicitly defined.grid-template-columns: repeat(3, 1fr);
) and limit reliance on auto-placement for critical layout.minmax(0, 1fr)
Inside Auto-Flow Gridsminmax(0, 1fr)
or percent-based track sizes, especially when used in auto-fill
or auto-fit
contexts.minmax(0, 1fr)
with more control like minmax(200px, 1fr)
or drop minmax
unless necessary.-webkit-line-clamp
Carefully With Gridline-clamp
with display: grid
, Safari may conflict layout behavior between the grid and the clamped content height.display: contents
on Grid Childrendisplay: contents
on grid children, which can break layout or accessibility.display: contents
on any direct children of a grid container.-ms-
prefixes if exporting code externally.transform: translateZ(0);
or will-change: transform;
to the grid container or elements that visually "break" when resizing.overflow
and height
Constraintsoverflow: hidden;
with a constrained height, leading to rendering issues.height
, min-height
, and overflow
values on both the grid container and children.To fix CSS Grid issues in Safari (desktop and iPad), ensure you define explicit grid tracks, avoid Safari-incompatible patterns like display: contents
or improper minmax
usage, and use Webflow's auto-prefixing. Also, test layout during resize/orientation changes, especially on iPad. Adjust with transforms or height fixes as necessary.