Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS CSS Grid Layout Introducing Grid Layout Setting Grid Rows

Grid Array and spacing

Why does 4, 5, and 6 make a 2x3 array instead of having 4 fill the 200px on line 1, sending 5, 6 to line 2?

1 Answer

Because there is only 3 definitions on this case on grid-template-columns: 200px auto 200px. So every row will have 3 elements. If you want more just add to grid-template-columns the proper property.