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 trialgene c
13,630 PointsHow to make the grid direction horizontal instead of vertical when grid-auto-flow: column?
grid-auto-flow: column
makes my grid count vertically.
.grid {
max-width: 1000px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 100px 100px;
grid-gap: 15px;
grid-auto-columns: minmax(150px, auto);
grid-auto-flow: column;
}
it's like:
1 3 5
2 4 6
i want it to be:
1 2 3
4 5 6
Rich Donnellan
Treehouse Moderator 27,696 PointsUpdated with the code snippet.
1 Answer
Aiden Berzins
23,837 Points.grid {
max-width: 1000px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 100px 100px;
grid-gap: 15px;
grid-auto-columns: minmax(150px, auto);
grid-auto-flow: column; /* change this to row instead of column*/
}
Rich Donnellan
Treehouse Moderator 27,696 PointsThe alternative is to let the default behavior take over. Not setting grid-auto-flow
is equivalent to setting it to row
.
Aiden Berzins
23,837 PointsAiden Berzins
23,837 PointsIt's helpful to add a snippet of your code so we can help see the issue.