Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Frank Grillo
5,223 PointsHow do I do this Repeat Notation Challenge?
I am doing what I think is the right thing but it keeps telling me to do it over
/* Complete the challenge by writing CSS below */
.wrapper {
display: grid;
grid-template-rows: 300px;
grid-template-columns: 2fr 1fr 1fr 1fr 1fr 2fr;
}
<!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>
1 Answer

Steven Parker
216,891 PointsWhat have you changed? This code appears to be the way the challenge starts out.
What the challenge is asking you to do is to use the "repeat" function to replace the parts where the same term appears multiple times.
Frank Grillo
5,223 PointsFrank Grillo
5,223 PointsIt just seemed a little confusing because it featured both 2fr and 1fr and the video didn't make it entirely clear