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 trialChristian Higgins
15,758 PointsCSS Flex: Not sure why this is wrong
Question says: "Select the class .column and use the flex item property and value that will expand the columns to fill the space of the row."
I tried the below and it says wrong, "Use the property that determines how much of the available space a flex item should take up."
This works when I test it on an outside browser. What's wrong about it?
/* Complete the challenge by writing CSS below */
.row {
display: flex;
flex-wrap:wrap;
}
.column {
flex: 1;
}
<!DOCTYPE html>
<html>
<head>
<title>Flexbox Layout</title>
<link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="page.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="row">
<div class="secondary column">
<h2>How to get here</h2>
<p>Tiramisu caramels gummies chupa.</p>
</div>
<div class="primary column">
<h2>Welcome!</h2>
<p>Everything in this city is worth waiting in line for.</p>
<img src="treats.svg" alt="treats">
</div>
<div class="tertiary column">
<h2>Great food</h2>
<p>Croissant macaroon pie brownie.</p>
</div>
</div>
</body>
</html>
3 Answers
Patrick Hooper
39,003 Pointsflex
is shorthand for 3 properties: flex-grow
, flex-shrink
, and flex-basis
. I believe the code challenge you're on is looking for one of those properties specifically, even though what you've written works in practice. So, just be a little more specific instead of just saying flex
and it should work.
Jennifer Nordell
Treehouse TeacherYou're just missing a word here ... and a hyphen. This is what it's expecting:
.column {
flex-grow: 1;
}
Christian Higgins
15,758 PointsThank you too!
Simon Duchaine
14,441 PointsTry with -webkit- in front of flex-wrap. Maybe the challenge was created before the full browser compatibility.
Christian Higgins
15,758 PointsNo, that's not working for me. But I appreciate the assistance!
Christian Higgins
15,758 PointsChristian Higgins
15,758 PointsThat was it. Thank you!