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 trialKim Dallas
11,461 Pointsthe grid template columns are defined
the grid tracks are defined
/* Complete the challenge by writing CSS below */
.grid {
display: grid;
grid-template-columms:repeat (auto-fit, minmax (300px, 1fr);
}
<!DOCTYPE html>
<html>
<head>
<title>CSS Grid Layout</title>
<link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
<link href="page.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="grid">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
</div>
</body>
</html>
1 Answer
Jennifer Nordell
Treehouse TeacherHi there, Kim Dallas ! You've definitely got the right idea here, which means that you're doing great with the concept so kudos! However, you have a few typos. First, you have misspelled "columns" as "columms". Note how your code has a red underline under it in the editor which is indicative of a problem. Secondly, you're missing a closing parenthesis. Your rule has two open parentheses but one closing. Tip: you should always have the same number of open parentheses as closing parentheses. Finally, as you've probably gathered by now, sometimes CSS can be really picky about whitespace. Here, you have a couple of extraneous whitespaces: one immediately after repeat
and one after minmax
.
You wrote:
grid-template-columms:repeat (auto-fit, minmax (300px, 1fr);
When I correct the misspelling, add a closing parenthesis, and fix the spacing, it looks like:
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
Hope this helps!