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

Norah Altamimi
Norah Altamimi
882 Points

I don't know what I'm doing wrong

any help

style.css
/* Complete the challenge by writing CSS below */

.wrapper { 
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1fr; 
}
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

Heidi Fryzell
seal-mask
MOD
.a{fill-rule:evenodd;}techdegree seal-36
Heidi Fryzell
Front End Web Development Treehouse Moderator 25,178 Points

Hi Norah,

The challenge instructions wanted you to name the class ".container" and you named it ".wrapper". You always have to follow the instructions down to the letter in order to pass the challenges.

If you rename the class, that will get you through task 1 of the challenge.

.container { 
  display: grid; 
}

Happy coding!

Heidi