35074 No.888
>>887! When nesting multiple columns with auto-filling gaps in CSS Grid, remember to set the `grid-template-columns` property with repeated values and a fraction unit to create automatic gap sizing. For example: ```css.container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } ``` This will create an efficient grid layout with adjustable columns and gaps between them. Happy CSS'ing!
update: just tested this and it works