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.

Kim Dallas
11,461 Pointsdo I need to go to html first and create a grid header statement
I'm confused
/* Complete the challenge by writing CSS below */
.container
<!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>4</div>
<div>5</div>
<div>6</div>
<div>7</div>
<div>8</div>
<div>9</div>
</div>
</body>
</html>
1 Answer

Oenas Vaes
Front End Web Development Techdegree Graduate 17,319 PointsBy changing the .container display value to grid you define a 'grid container'.
For an in depth guide on grid containers you can check out A Complete Guide to Grid on CSS-tricks. Your code should look like this;
.container {
display: grid;
}
Kim Dallas
11,461 PointsKim Dallas
11,461 Pointsthank you oenas