Island Babygirl
HomeBlogAbout

Flexbox Bento

by IBG on January 9th, 2021
SHARE THIS POST
web-development
A bento box with sushi and tempura, demonstrating ways to justify content using flexbox.A bento box with sushi and tempura, demonstrating ways to justify content using flexbox.

💻➡️ “The Flexible Box Module, usually referred to as #flexbox, was designed as a one-dimensional layout model, and as a method that could offer space distribution between items in an interface and powerful alignment capabilities.” - MDN

Ever since I learned Flexbox 💻, I couldn’t stop thinking of bento 🍱 boxes.

Bento box with the text explaining to use Flexbox justify content first.

🥢 Start with the CSS property justify-content:

Bento box with sushi demonstrating Flexbox justify content positions. Space between, space around, space evenly.

🍣 Then add the CSS value that you want. 🍤

space-between

items are evenly distributed in the line; first item is on the start line, last item on the end line

space-around

items are evenly distributed in the line with equal space around them. Note that visually the spaces aren’t equal, since all the items have equal space on both sides. The first item will have one unit of space against the container edge, but two units of space between the next item because that next item has its own spacing that applies.

space-evenly

items are distributed so that the spacing between any two items (and the space to the edges) is equal.

Bento box with sushi demonstrating Flexbox justify content positions in detail.

Flexbox 🍱 is great for mobile screens 📱 and responsive content for dynamic layouts and webapps 🖥️.

Bento box with sushi demonstrating Flexbox justify content positions.  Flex start, center, flex end.

flex-start (default)

items are packed toward the start of the flex-direction.

center

items are centered along the line

flex-end

items are packed toward the end of the flex-direction.

It's pretty easy, now you try! 😋

Thanks for reading!

SHARE THIS POST

Previous Post

Vanilla Javascript

Next Post

Islander Hair
Island Babygirl

© 2021 Island Babygirl. All Rights Reserved.

HomeBlogAbout
Subscribe|RSS|Sitemap