I am wondering is it possible to position in the grid the children of children of the grid container?
let's say i have my elements hierarchy like this:
<div class="grid-container">
<div class="grid-item-1">
....
</div>
<div class="grid-item-2">
....
</div>
<div class="layer-2">
<div class="grid-item-3">
....
</div>
<div class="grid-item-4">
....
</div>
</div>
</div>
I want cells from grid-item-3
to be functioning as if they were direct children of grid-container
.
Or should i separately handle each child-container of grid-items?