Grid properties not working on elements inside grid container

The scope of a grid formatting context is limited to a parent-child relationship.

This means that a grid container is always the parent and a grid item is always the child. Grid properties work only within this relationship.

Descendants of a grid container beyond the children are not part of grid layout and will not accept grid properties.

You’re trying to apply grid properties to elements that are descendants, but not children, of a grid container. Those elements are outside the scope of grid layout.

Bottom line: You will always need to apply display: grid or display: inline-grid to a parent in order to apply grid properties to the child.

Note that grid items can also be grid containers.

Also see:

Leave a Comment