Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Grid properties not working on elements inside grid container

I'm trying to position a nested li (ul li ul li) on a CSS Grid created on the top-most ul. No love yet (it's not working). Maybe it's not possible, or I'm missing something?

#orgChart ul.orgChartLevel1 {
  display: grid;
  grid-template-columns: 12px auto;
  grid-template-rows: 100px auto auto;
  grid-row-gap: 30px;
}

#orgChart li.orgChartLevel2b {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}
<ul class="orgChartLevel1">
  <li class="orgChartLevel1a">
    <ul class="orgChartLevel2">
      <li class="orgChartLevel2b">
      </li>
    </ul>
  </li>
</ul>
like image 807
Ted Fitzpatrick Avatar asked Sep 20 '25 20:09

Ted Fitzpatrick


1 Answers

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 need to apply display: grid or display: inline-grid to a parent in order to apply grid properties to the child. Or, you will need to remove the wrapper standing between the grid container and the items needing to accept grid rules.

Note that grid items can also be grid containers.

Also see:

  • Position deeply nested elements in a higher level grid container
  • Proper use of flex properties when nesting flex containers
  • Is it bad practice to nest CSS Grids?
like image 165
Michael Benjamin Avatar answered Sep 22 '25 09:09

Michael Benjamin