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 Auto-generate Flexible Columns

Alexander Korneev
Alexander Korneev
13,629 Points

Could you, please, help me with the code? Cannot pass the task.

Hello,

I try to pass the task, but seems like I understand something incorrectly in task text, as my repeat fuction does not work.

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

.grid {
  display: grid;
  grid-template-columns: repeat (auto, minmax(300px, 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="grid">
      <div>1</div>
      <div>2</div>
      <div>3</div>
      <div>4</div>
      <div>5</div>
      <div>6</div> 
    </div>
  </body>
</html>

2 Answers

Alexander Korneev
Alexander Korneev
13,629 Points

I found my problem: not "auto", but "auto-fit" and no space after repeat. Thank you.

Alexander Korneev
Alexander Korneev
13,629 Points

Hi, do you mean at the end of 3rd line of code? Seems like ; are in place.

Gabriela Macsim
Gabriela Macsim
3,821 Points

Oh, I'm so sorry! I'm on my phone and only saw the first part of what you wrote.