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 Repeat Notation Challenge

How do I use shortcut for repeating pattern

I used the repeat function and that's vid showed . How am I supposed to used.any recommendations please

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

.wrapper {
  display: grid;
  grid-template-rows: 300px;
  grid-template-columns: repeat(1fr 2fr);
}
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>1</div>
      <div>2</div>
      <div>3</div>
      <div>4</div>
      <div>5</div>
      <div>6</div> 
    </div>
  </body>
</html>

2 Answers

Steven Parker
Steven Parker
229,732 Points

The "repeat" function takes 2 arguments separated by a comma: the first is the number of times you want to repeat, and the second is what to repeat.

Hint: not everything in the column list will be part of the "repeat".

I appreciate you help but it is not working .

grid-template-columns: repeat(4, 1fr);

I did include the what repeat and number of time but the quiz is why answer not that.do u mind illustrating it in code

I figured it is asking only repeated the one punch need to be repeated

grid-template-columns: 2fr repeat(4, 1fr) 2fr;

Thanks for giving me the clue . I hope feature student who take this get easy time.

Steven Parker
Steven Parker
229,732 Points

You got it! But it might be a bit of a "spoiler" for other students to post the final solution.