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 trial

CSS CSS Flexbox Layout Flexbox Properties Growing and Aligning Flex Items

gil hoffman
gil hoffman
4,006 Points

flexbox help

i dont understand the question at all, really badly written.

style.css
/* Complete the challenge by writing CSS below */

.row {
  display: flex;
}
.column{
  flex: 1;
}
index.html
<!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>

2 Answers

Kristopher Van Sant
PLUS
Kristopher Van Sant
Courses Plus Student 18,830 Points

Hey Gil! I understand your frustration. Tasks can be confusing at times. And often times they want very specific answers. So it can help to focus on the words they chose to use in outlining this task.

"Select the class .column and use the flex item property and value that will expand the columns to fill the space of the row."

You've already done the first part and last part of the task. Selecting the class .column and setting the value. So let's look at the property you're using,

Flex is a shorthand property, and while Guild does mention in the video review that "Using only one number value for flex sets the flex-grow value of an item" the challenge doesn't accept it as an answer because it's looking for the specific property, not the shorthand, that will EXPAND the columns. SO, what could be another word for expand? Grow! So you'll want to use the flex-grow property instead. I hope that helps! :)

Muhamed Asil
Muhamed Asil
7,453 Points

what's the challenge question?