Flexbox
Table of Contents:
Resources:
Terms
Flexbox - a
display
type that arranges flexible elements in a container in a row or column.Flex Container - the element with
display:flex
.Flex Item - an element inside of a flex container.
Main Axis — the direction that flex items flow in, (set by
flex-direction
and in therow
direction by default).Cross Axis — the direction perpendicular to the main axis.
The essential flex container properties are:
flex-direction
- Determines the direction flex items will be arranged. Defaults torow
but can be set tocolumn
to arrange flex items vertically.justify-content
— defines the spacing along the main axisalign-items
— defines the alignment of elements along the cross axisgap
— controls spacing between flex items (not on outer edges)
The essential flex item properties are:
flex-grow
— defines the amount a flex item will grow relative to its siblings when there is excess space.flex-shrink
— defines the amount a flex item will shrink relative to its siblings when there is not enough space.flex-basis
— defines the starting size of a flex item.flex
— used as shorthand for the above 3 properties.
Explore Flexbox on Youtube
Open https://www.youtube.com/ and see how elements shift in size as you resize the window.
Flexbox is a display type used for arranging elements inside of a container in a row or a column.
The parent element gets the
display: flex
property, making it a flex container.The children of the flex container automatically become flex items
Flexbox Puts Things In A Row
With Flexbox, the most common use case is arranging identical elements in a row that will grow or shrink according to the available space.
Consider the following HTML:
By default these elements elements will stack on top of each other.
By setting the adding Flexbox to the parent container (the div.flex-container
element), its children will be placed horizontally in a row!
The flex items will all stretch vertically to have equal height but will only take up as much width as is needed.
Controlling Flex Items
With Flexbox applied to the parent container, we gain access to a bunch of options for arranging the flex items inside.
We can control:
the direction that flex items flow with
flex-direction
how much space is between flex items with
gap
how the flex items grow or shrink along the main axis with
flex
how flex items are spaced along the main axis with
justify-content
how flex items are stretch and are positioned along the cross axis with
align-items
whether or not flex items wrap when they can't fit in one line with `flex-wrap``
Let's jump into each!
Flex Direction (Flex Container Property)
Flexbox has two axes, the main axis and the cross axis. Flex items flow along the main axis and, by default stretch along the cross axis.
By default, the main axis runs in the "row" direction, arranged left to right.
We can arrange flex items in a column (top to bottom) by setting the flex-direction
property to column
:
flex-direction: column
changes the orientation of the main and cross axes.
The main axis is now vertical (top to bottom)
The cross axis is now horizontal (left to right)
Knowing the direction of these two axes plays an essential role in controlling how flex items behave inside of a flex container. Let's look at how!
Gap (Flex Container Property)
Gap is perhaps the most useful feature of Flexbox. The gap
property makes adding space between elements incredibly easy:
Note that the gap will only be applied to the space between the elements, not before the first element and after the last element.
Flex (Flex Item Property)
The flex
property controls how much a flex item will grow or shrink within a container when there is extra space.
By default, flex items will only take up as much space as they need. However, if there is extra space, flex items with the flex
property will flex to take up that space.
With flex: 1;
applied to all flex items, they will all attempt to share the extra space evenly.
With flex: 3;
applied to the one hovered element, it will take 3 times as much extra space as the other elements.
Justify Content (Flex Container Property)
By default, flex items will arrange themselves at the start of the main axis (left to right in the row direction) of the flex container. We can change this behavior using justify-content
:
Align Items (Flex Container Property)
By default, flex items will stretch along the cross axis. We can change this behavior using align-items
.
Flex Wrap (Flex Container Property)
By default, flex items will all try to fit onto one line. If there isn't enough space, they will overflow.
Setting flex-wrap: wrap
, flex items will be pushed to the next line when there isn't enough space.
Challenge: Styling a Navbar using Flexbox
One of the most common uses of flexbox is to style a navigation bar. Open up 1-navbar
and look at the <header>
element:
Below, you can see what the header currently looks like (left) and what we want it to look like (right). What is different?
Q: How do we fix this?
Some More Examples!
Check out the
3-photo-gallery/
directory for a cool example of using flexbox to make a wall-to-wall flexible photo gallery based on this post: Adaptive Photo Layout With Flexbox
Last updated