Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
- Controlling the Direction of Flex Items 3:47
- Wrapping Flex Items 2:33
- Distributing Space Inside a Flex Container 5:55
- Changing the Order of Flex Items 5:32
- Wrapping Items and Distributing Space 3 objectives
- Growing Flex Items 3:42
- Smarter Layouts with flex-basis and flex 6:42
- Aligning Flex Items on the Cross Axis 3:43
- Growing and Aligning Flex Items 3 objectives
- Vertical and Horizontal Centering 4:14
- Flexbox Properties Review 6 questions

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
Centering content is one of the trickiest and more difficult things to do in CSS layout when using properties like float, display or position. In this video, you'll learn why flexbox is the smartest solution when it comes to centering content.
Resources
- A Complete Guide to Flexbox
- Flexbox - latest browser support
- Flexbox Froggy - A fun way to practice flexbox
Three ways to center-align elements using flexbox
Set the flex container's justify-content
and align-items
values to center
:
.container {
justify-content: center;
align-items: center;
}
Set the flex container's justify-content
value to center
, while setting the flex item's align-self
value to center
:
.container {
justify-content: center;
}
.item {
align-self: center;
}
Set the flex item's margin
value to auto
:
.item {
margin: auto;
}
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
Shayla Lewis
Web Development Techdegree Student 5,404 Points1 Answer
-
pratyush raj
7,097 Points1 Answer
-
PLUS
kevin hudson
Courses Plus Student 11,987 Points2 Answers
-
Jonathan Fuentes
Full Stack JavaScript Techdegree Student 11,191 Points1 Answer
-
PLUS
Ramesh Kunwar
Courses Plus Student 4,066 Points1 Answer
-
Alex Thomas
4,247 Pointswhy is my justify content pushing everything to the left of the page?
Posted by Alex ThomasAlex Thomas
4,247 Points1 Answer
-
Ryan Maneo
4,342 Points1 Answer
-
Christopher Chard
3,087 Points1 Answer
-
Cindy Baumert
10,357 Points1 Answer
-
Learning Coding
7,134 Points2 Answers
-
Kevin Dunn
6,623 Points1 Answer
-
James Barrett
13,253 Points4 Answers
-
Florian Neubauer
5,649 Points1 Answer
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up