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 trialJacques MATAND DIYAMBY
2,943 PointsLet's display equal -- but flexible -- widths for the columns. Create a new rule that targets the columns. Then, set the
Let's display equal -- but flexible -- widths for the columns. Create a new rule that targets the columns. Then, set the columns to evenly expand and display on one line, with an initial width of 300px.
/* Complete the challenge by writing CSS below */
.row {
display: flex;
}
.column {
margin-bottom: auto;
}
<!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>Welcome!</h2>
<p>Everything in this city is worth waiting in line for. Cupcake ipsum dolor sit.</p>
<p>Wafer lollipop dessert. Bonbon jelly beans pudding dessert sugar plum.</p>
</div>
<div class="primary column">
<h2>How to get here</h2>
<p><strong>Plane: </strong>Tiramisu caramels gummies chupa chups lollipop muffin. Jujubes chocolate caramels cheesecake brownie lollipop dragée cheesecake.</p>
<p><strong>Train: </strong>Pie apple pie pudding I love wafer toffee liquorice sesame snaps lemon drops. Lollipop gummi bears dessert muffin.</p>
<p><strong>Car: </strong>Jelly cotton candy bonbon jelly-o jelly-o I love. I love sugar plum chocolate cake pie I love pastry liquorice.</p>
</div>
<div class="tertiary column">
<h2>Great food</h2>
<p>Croissant macaroon pie brownie. Cookie marshmallow liquorice gingerbread.</p>
<p>Wafer lollipop dessert. Bonbon jelly beans pudding dessert sugar plum.</p>
</div>
</div>
</body>
</html>
8 Answers
Steven Parker
231,236 PointsTo expand evenly, you'd want your columns to have flex-grow: 1
, and to establish the initial width you would use the flex-basis
property.
But you can set both at once with the "flex
" shorthand property:
flex: 1 300px;
Dipika Purohit
Courses Plus Student 20,955 Points.row { display: flex; } .column{ flex: 1 300 px; }
Robin Versloot
7,326 Pointsyou sir, saved my day.
Starky Paulino
Front End Web Development Techdegree Student 6,398 Pointscolumn { margin-bottom: auto; flex: 1 300px;
}
Courage Ngonidzaishe Moyosvi
28,998 Pointsyou the best thank you so much
William Ma
Front End Web Development Techdegree Graduate 12,958 Points/* Complete the challenge by writing CSS below */
.row{ display: flex; }
.column { flex-grow:1; flex-basis:300px;
}
Violeta Last
14,547 PointsI did .column { flex-grow:1; flex-basis:300px; }
Sandeep Krishnan
9,730 Pointswhat did I do wrong here ?
.row { display: flex; } .column { flex-basis: 80px; margin:auto; justify-content: space-around;
}
Heba Hendy
7,786 Pointsrow { display: flex; } .column { flex: 1 300px; }
Sandeep Krishnan
9,730 Points.row { display: flex; } /* I created the flex container*/
.column { flex-basis: 300px; /* I gave it a equal initial space of 300 px*/ margin:auto; justify-content: space-around; /* This was to give it equal space around */
}