Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
- Building a Navigation Bar with Flexbox 7:32
- Creating a Two Column Layout with Flexbox 2:36
- Creating a Three Column Layout with Flexbox 5:24
- Aligning Items to the Bottom of a Column 4:13
- Creating a Sticky Footer with Flexbox 4:58
- Building a Layout with Flexbox 5 questions
- Flexbox Columns Challenge 2 objectives

- 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
A sticky footer is a footer that sticks to the bottom of the page, regardless of the amount of content on the page. If a page’s content is shorter than the height of the browser, you end up with a footer that sits near the middle of the page, instead of at the bottom. Flexbox is a great solution for fixing these types of problems.
Resources
- min-height - MDN
- Flexbox Froggy - A fun way to practice flexbox
Video review
- When you make
body
a flex container, it lays out all its direct children horizontally on a single line. - Setting the
flex-direction
ofbody
tocolumn
stacks its flex items vertically. -
1vh
is equal to 1/100th or 1% of the viewport height.
Sticky footer snippet
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.row {
flex: 1;
}
Alternate sticky footer method
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.main-footer {
margin-top: auto;
}
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
karan Badhwar
Web Development Techdegree Graduate 18,135 Points1 Answer
-
ja5on
10,338 Points1 Answer
-
Bartlomiej Pajak
5,063 Points1 Answer
-
Bibiana Balbuena Barbosa
14,768 Points4 Answers
-
Robert Rydlewski
3,828 Points1 Answer
-
vamosrope14
14,932 Points1 Answer
-
Jasmin chang
3,342 Points3 Answers
-
Yvette Pascacsio
5,522 Points2 Answers
-
Michael Pashkov
UX Design Techdegree Student 11,350 Points3 Answers
-
anthony amaro
8,686 Points1 Answer
-
Kamal Paudel
5,407 PointsAfter we master the flexbox method, is it still necessary to remember the inline-block & float methods to build layouts?
Posted by Kamal PaudelKamal Paudel
5,407 Points3 Answers
-
guram dgebuadze
Front End Web Development Techdegree Student 4,122 Points2 Answers
-
Lina Dorem
4,543 Points2 Answers
-
PLUS
Jeff Sanders
Courses Plus Student 9,503 Points4 Answers
-
Nicholas Wallen
12,278 Points1 Answer
-
Aakash Srivastav
Full Stack JavaScript Techdegree Student 11,638 Points3 Answers
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