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 trialRaeed Sabree
10,664 Pointsdistribute the available space inside .row give .row the blexbox property and value that will place the first and last
items along its edges then equally distribute the space between the other items
/* Complete the challenge by writing CSS below */
.row
{
display: flex;
flex-wrap: wrap;
}
<!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="item">Item 1</div>
<div class="item">Item 2</div>
<div class="item">Item 3</div>
<div class="item">Item 4</div>
<div class="item">Item 5</div>
<div class="item">Item 6</div>
</div>
</body>
</html>
1 Answer
Adam Mould
6,292 PointsYou'd need to use justify-content: space-between;, so your final .row class will look like this:
.row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
CSS Tricks has a comprehensive flexbox guide which I reference quite a lot to help me with flexbox.