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

Experimenting with flex-box. Some how my boxes align top to bottom and not left to right.

Isn’t left to right default of flex-box? Here’s my code.

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
<style>
div {
    display: flex;
    background-color: #999; 
    height: 200px;
    width: 200px;
    margin: 2%;
    text-align: center;
}
#wrapper {
    width: 80%;
    height: 100%;
    margin: auto;   
    background-color: white;
}
</style>
</head>

<body>
<div id="wrapper">
<div id="box1">1</div>
<div id="box2">2</div>
<div id="box3">3</div>
</div> <!--end of wrapper-->
</body>
</html>

2 Answers

You must apply display: flex to your wrapper.

https://developer.mozilla.org/fr/docs/Web/Guide/CSS/Flexible_boxes

Thank you Banu!!