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 Flexible Sized Grids Flexible Tracks Challenge

What's wrong with my code?

Set four column tracks using a unit that represents a fraction of the available space inside the grid container. The first track should take up 2 fractions of the space, and the remaining tracks should each take up 1 fraction. /* Complete the challenge by writing CSS below */

.wrapper { display: grid; grid-template-columns: 2fr 1fr 11fr 1fr; }

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

.wrapper {
display: grid;
grid-template-columns: 2fr 1fr 11fr  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="wrapper">
      <div>A</div>
      <div>B</div>
      <div>C</div>
      <div>D</div>
      <div>E</div>
      <div>F</div> 
      <div>G</div>
      <div>H</div>   
    </div>
  </body>
</html>

I get this comment: Bummer! Are you setting the column tracks correctly? This line should read: grid-template-columns: 2fr 1fr 1fr 1fr;

5 Answers

Dale Severude
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Dale Severude
Full Stack JavaScript Techdegree Graduate 71,349 Points

Hi Nikola,

In your third column you have 11 instead of 1 and in your fourth column you have an extra space. Fix these and your code will work.

Michael Moore
Michael Moore
7,121 Points

I am having trouble understanding this. It says 4 column track, the first taking up 2 fractions and each additional taking up 1 fraction. 2 + 1 + 1 = 4. Why does 2fr 1fr 1fr 1fr pass as the answer?

Dale Severude
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Dale Severude
Full Stack JavaScript Techdegree Graduate 71,349 Points

When it says a 4 column track, the tracks can be any size. So actually it is columns of 2 + 1 + 1 + 1 = 5. The 4 columns have a total width of 5fr in which the first column is twice as wide as the next three.

Hi my friend the correct Code is :

''' .wrapper { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; } '''

i used your coding but im getting an error message " Bummer: Make sure you create a CSS rule for '.container'.

this worked for me

.container{ display:grid; grid-template-columns:2fr 1fr 1fr 1fr; }

.wrapper { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; }