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 Understanding Grid Challenge

L C
L C
1,497 Points

Hi, Why is this still wrong? .container { display: grid;   grid-template-rows: 200px 300px 100px; }

Hi,

For this task I added this code and do not understand while it is still shown as wrong.

This is the challenge:

Next, declare three row tracks. Set the first row track to 200px, the second to 300px, and the third to 100px.

Here is my answer, why is it still wrong?

/* Complete the challenge by writing CSS below */ .container { display: grid;   grid-template-rows: 200px 300px 100px; }

style.css
/* Complete the challenge by writing CSS below */
.container {
display: grid;
    grid-template-rows: 200px 300px 100px;
}
index.html
<!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="container">
      <div>1</div>
      <div>2</div>
      <div>3</div>   
    </div>
  </body>
</html>

1 Answer

So I did this challenge in my account with the snippet you added and it's correct. You might need to contact teamtreehouse or clear cache and cookies in your browser.