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 trialJessica Felicio
3,242 PointsWhat am I doing wrong?
it says 2 fractions of the space so it means half? no?
/* Complete the challenge by writing CSS below */
.grid {
grid-template-columns: 3fr 1fr 1fr 1fr
}
<!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>A</div>
<div>B</div>
<div>C</div>
<div>D</div>
<div>E</div>
<div>F</div>
<div>G</div>
<div>H</div>
</div>
</body>
</html>
1 Answer
Dale Severude
Full Stack JavaScript Techdegree Graduate 71,350 PointsHi Jessica,
When it says it wants two fractions of the space, that means it wants 2fr. Also, don't forget to set your display to grid.
Jessica Felicio
3,242 PointsJessica Felicio
3,242 PointsThank you so much! this really helped!