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 trialJeff Greco
6,105 PointsNow set three column tracks in this order: 200px 400px 200px.
Now set three column tracks in this order: 200px 400px 200px.
/* Complete the challenge by writing CSS below */
.container{
max-width: 800px;
display: grid;
grid-template-columns: 200ps 400px 200px;
}
<!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
Busra Tokuc
7,444 PointsHi Jeff, It's only a little typing error. Fix 200ps value to 200px at grid-template-columns.
Shawn Currey
15,742 PointsShawn Currey
15,742 Pointsnope, says that's incorrect
It wants both rows and columns, so to clarify it is...