search
HomeWeb Front-endCSS TutorialFlexbox – The Modern Way to Align and Distribute Space

Flexbox – The Modern Way to Align and Distribute Space

Lecture 14: Flexbox – The Modern Way to Align and Distribute Space

Hey there! Ready to dive into one of the coolest and most powerful tools in CSS? Today, we’re going to explore Flexbox. If you’ve ever struggled with aligning items or distributing space in a neat and responsive way, Flexbox is your new best friend.

1. What is Flexbox?

Flexbox (Flexible Box Layout) is a one-dimensional layout system that allows you to control the alignment, spacing, and distribution of elements inside a container—even when the size of those elements is unknown or dynamic.

Think of Flexbox as a toolbox to create layouts that can stretch, shrink, or align depending on the available space.

2. The Magic Begins with display: flex

To start using Flexbox, you only need to set display: flex on a container. Once you do that, all the direct children of that container become flex items, and they’ll immediately start behaving differently.

<div class="flex-container">
    <div class="item">Item 1</div>
    <div class="item">Item 2</div>
    <div class="item">Item 3</div>
</div>
.flex-container {
    display: flex;
}

Now, all the items inside .flex-container are flex items and can be easily manipulated.

3. Flex Direction – Which Way Should We Go?

By default, Flexbox arranges items in a row (horizontally), but what if you want them in a column (vertically)? Flexbox gives you total control with the flex-direction property.

  • row: Align items in a horizontal row (this is the default).
  • column: Stack items in a vertical column.
  • row-reverse: Same as row, but the order of items is reversed.
  • column-reverse: Same as column, but items are stacked in reverse order.
.flex-container {
    display: flex;
    flex-direction: column;
}

Now, the items will stack vertically!

4. Justifying Content – Spreading Things Out

Let’s say you have three items, and you want to spread them out evenly in your container. This is where justify-content comes in handy.

  • flex-start: Items align to the start of the container (default).
  • center: Items are centered.
  • space-between: Items are evenly spaced, with the first item at the start and the last item at the end.
  • space-around: Items are spaced with equal padding around each item.
.flex-container {
    display: flex;
    justify-content: space-between;
}

Now, the items will be evenly spaced within the container.

5. Aligning Items – Vertical Magic

While justify-content controls horizontal alignment, align-items takes care of vertical alignment (or along the cross-axis). Here are your options:

  • stretch: Items stretch to fill the container (default).
  • flex-start: Items align to the top.
  • flex-end: Items align to the bottom.
  • center: Items are vertically centered.
.flex-container {
    display: flex;
    align-items: center;
}

Now, all the items will be vertically centered within the container.

6. Flex-Grow, Flex-Shrink, and Flex-Basis – Fine-Tuning the Flex Items

Sometimes, you want certain items to grow, shrink, or have a fixed starting size. The flex-grow, flex-shrink, and flex-basis properties let you control that behavior:

  • flex-grow: Controls how much an item should grow relative to the other items.
  • flex-shrink: Controls how much an item should shrink relative to the other items.
  • flex-basis: Sets the initial size of the item before it grows or shrinks.

Example:

.item {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 100px;
}

This ensures that the item starts at 100px, but it can grow to fill extra space if needed, without shrinking.

7. Flexbox Example in Action

Let’s put all this together with an example!

<div class="flex-container">
    <div class="item">Item 1</div>
    <div class="item">Item 2</div>
    <div class="item">Item 3</div>
</div>
.flex-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 300px;
    background-color: #f0f0f0;
}

.item {
    background-color: #4CAF50;
    padding: 20px;
    color: white;
    flex-grow: 1;
}

In this example:

  • Items are arranged in a row.
  • They are evenly spaced out with justify-content: space-around.
  • All items are vertically centered in the container with align-items: center.
  • Each item grows to fill the available space equally, thanks to flex-grow: 1.

8. Why Flexbox Rocks

Flexbox takes away much of the complexity of layout design that we used to struggle with in CSS. No more floats, no more worrying about clearing, and much easier responsive design!

Ambilan Utama:

  • Gunakan paparan: lentur untuk menukar bekas menjadi bekas lentur.
  • Gunakan arah lentur untuk menetapkan arah aliran (baris atau lajur).
  • Gunakan justify-content dan align-item untuk mengawal jarak dan penjajaran.
  • Tala halus item flex anda dengan flex-grow, flex-shrink dan flex-basis.

ikuti saya di LinkedIn-

Ridoy Hasan

The above is the detailed content of Flexbox – The Modern Way to Align and Distribute Space. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Where should 'Subscribe to Podcast' link to?Where should 'Subscribe to Podcast' link to?Apr 16, 2025 pm 12:04 PM

For a while, iTunes was the big dog in podcasting, so if you linked "Subscribe to Podcast" to like:

Browser Engine DiversityBrowser Engine DiversityApr 16, 2025 pm 12:02 PM

We lost Opera when they went Chrome in 2013. Same deal with Edge when it also went Chrome earlier this year. Mike Taylor called these changes a "Decreasingly

UX Considerations for Web SharingUX Considerations for Web SharingApr 16, 2025 am 11:59 AM

From trashy clickbait sites to the most august of publications, share buttons have long been ubiquitous across the web. And yet it is arguable that these

Weekly Platform News: Apple Deploys Web Components, Progressive HTML Rendering, Self-Hosting Critical ResourcesWeekly Platform News: Apple Deploys Web Components, Progressive HTML Rendering, Self-Hosting Critical ResourcesApr 16, 2025 am 11:55 AM

In this week's roundup, Apple gets into web components, how Instagram is insta-loading scripts, and some food for thought for self-hosting critical resources.

Git Pathspecs and How to Use ThemGit Pathspecs and How to Use ThemApr 16, 2025 am 11:53 AM

When I was looking through the documentation of git commands, I noticed that many of them had an option for . I initially thought that this was just a

A Color Picker for Product ImagesA Color Picker for Product ImagesApr 16, 2025 am 11:49 AM

Sounds kind of like a hard problem doesn't it? We often don't have product shots in thousands of colors, such that we can flip out the with . Nor do we

A Dark Mode Toggle with React and ThemeProviderA Dark Mode Toggle with React and ThemeProviderApr 16, 2025 am 11:46 AM

I like when websites have a dark mode option. Dark mode makes web pages easier for me to read and helps my eyes feel more relaxed. Many websites, including

Some Hands-On with the HTML Dialog ElementSome Hands-On with the HTML Dialog ElementApr 16, 2025 am 11:33 AM

This is me looking at the HTML element for the first time. I've been aware of it for a while, but haven't taken it for a spin yet. It has some pretty cool and

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools