search
HomeWeb Front-endCSS TutorialCSS Flexbox Deep Dive

CSS Flexbox Deep Dive

Lecture 8: Mastering CSS Flexbox - A Deep Dive

In this lecture, we’ll dive deeper into CSS Flexbox, a powerful layout tool that helps you design responsive and flexible layouts. You’ll learn how to use Flexbox to align, distribute, and order elements efficiently, making your design more adaptive across devices.


What is Flexbox?

Flexbox, short for "Flexible Box Layout," is a CSS layout module that makes it easier to design layouts that can adjust to different screen sizes. It allows the arrangement of items in a container to be flexible, aligning them dynamically based on the available space.


1. Flexbox Terminology

Before we start using Flexbox, let's understand its main components:

  • Flex Container: The parent element that holds flex items.
  • Flex Items: The child elements inside the flex container.

You enable Flexbox by setting display: flex on the container.

  • Example:
  .flex-container {
    display: flex;
  }

Now, the child elements inside .flex-container will behave according to the Flexbox rules.


2. Flex Direction

flex-direction controls the direction in which flex items are placed in the container. By default, items are placed in a row.

  • Values:

    • row: Items are arranged horizontally (default).
    • row-reverse: Items are arranged horizontally but in reverse order.
    • column: Items are arranged vertically.
    • column-reverse: Items are arranged vertically in reverse order.
  • Example:

  .flex-container {
    display: flex;
    flex-direction: row; /* You can change to column */
  }

3. Justify Content

justify-content is used to align flex items along the main axis (horizontal if flex-direction: row; vertical if flex-direction: column).

  • Values:

    • flex-start: Aligns items to the start.
    • flex-end: Aligns items to the end.
    • center: Centers items.
    • space-between: Spreads items, with the first item at the start and the last at the end.
    • space-around: Adds equal space around each item.
  • Example:

  .flex-container {
    justify-content: center;
  }

In this example, the items inside the flex container will be centered.


4. Align Items

align-items aligns flex items along the cross axis (perpendicular to the main axis).

  • Values:

    • stretch: Stretches items to fill the container (default).
    • flex-start: Aligns items to the start of the cross axis.
    • flex-end: Aligns items to the end of the cross axis.
    • center: Centers items along the cross axis.
  • Example:

  .flex-container {
    align-items: center;
  }

5. Flex Wrap

By default, flex items are placed on one line, and the content may shrink to fit. flex-wrap allows flex items to wrap onto multiple lines if necessary.

  • Values:

    • nowrap: Items stay on one line (default).
    • wrap: Items wrap onto multiple lines.
    • wrap-reverse: Items wrap onto multiple lines, but in reverse order.
  • Example:

  .flex-container {
    flex-wrap: wrap;
  }

6. Align Content

align-content aligns multiple rows of flex items along the cross axis. It’s used when the container has extra space in the cross axis, and there are multiple rows of flex items.

  • Values:

    • flex-start: Packs lines toward the start.
    • flex-end: Packs lines toward the end.
    • center: Packs lines toward the center.
    • space-between: Distributes lines evenly with space between them.
    • space-around: Distributes lines evenly with space around them.
    • stretch: Stretches lines to take up the available space.
  • Example:

  .flex-container {
    align-content: space-between;
  }

Practical Example: Creating a Responsive Photo Gallery

Let’s create a responsive photo gallery using Flexbox.

HTML:

<div class="gallery">
  <div class="gallery-item">Image 1</div>
  <div class="gallery-item">Image 2</div>
  <div class="gallery-item">Image 3</div>
  <div class="gallery-item">Image 4</div>
  <div class="gallery-item">Image 5</div>
</div>

CSS:

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 10px;
  padding: 20px;
}

.gallery-item {
  flex-basis: calc(25% - 20px); /* Four items per row */
  background-color: #ddd;
  padding: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .gallery-item {
    flex-basis: calc(50% - 20px); /* Two items per row on smaller screens */
  }
}

In this example:

  • The .gallery container uses Flexbox to wrap the items and spread them evenly.
  • Each .gallery-item takes up 25% of the container width, minus the gap.
  • On smaller screens (below 768px), the items adjust to 50% width for better readability.

Responsive Design with Flexbox

Flexbox is a powerful tool for responsive design. You can easily adjust the layout by changing flex properties based on the screen size using media queries.

  • Example:
  @media screen and (max-width: 600px) {
    .gallery-item {
      flex-basis: 100%; /* Items take up full width on small screens */
    }
  }

With this media query, on screens smaller than 600px, each gallery item will take up the full width of the container.


Practice Exercises

  1. Create a navigation bar using Flexbox, with the logo on the left and the links on the right.
  2. Create a three-column layout that wraps into one column on smaller screens.
  3. Use justify-content and align-items to create different layouts, like a centered section or a footer with evenly spaced links.

Next Up: In the next lecture, we’ll explore CSS Grid - A Deep Dive, where you’ll learn about CSS Grid and how it compares to Flexbox for building complex layouts. Stay tuned!


follow me on LinkedIn-

Ridoy Hasan

The above is the detailed content of CSS Flexbox Deep Dive. 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
Demystifying Screen Readers: Accessible Forms & Best PracticesDemystifying Screen Readers: Accessible Forms & Best PracticesMar 08, 2025 am 09:45 AM

This is the 3rd post in a small series we did on form accessibility. If you missed the second post, check out "Managing User Focus with :focus-visible". In

Adding Box Shadows to WordPress Blocks and ElementsAdding Box Shadows to WordPress Blocks and ElementsMar 09, 2025 pm 12:53 PM

The CSS box-shadow and outline properties gained theme.json support in WordPress 6.1. Let's look at a few examples of how it works in real themes, and what options we have to apply these styles to WordPress blocks and elements.

Create a JavaScript Contact Form With the Smart Forms FrameworkCreate a JavaScript Contact Form With the Smart Forms FrameworkMar 07, 2025 am 11:33 AM

This tutorial demonstrates creating professional-looking JavaScript forms using the Smart Forms framework (note: no longer available). While the framework itself is unavailable, the principles and techniques remain relevant for other form builders.

Comparing the 5 Best PHP Form Builders (And 3 Free Scripts)Comparing the 5 Best PHP Form Builders (And 3 Free Scripts)Mar 04, 2025 am 10:22 AM

This article explores the top PHP form builder scripts available on Envato Market, comparing their features, flexibility, and design. Before diving into specific options, let's understand what a PHP form builder is and why you'd use one. A PHP form

Working With GraphQL CachingWorking With GraphQL CachingMar 19, 2025 am 09:36 AM

If you’ve recently started working with GraphQL, or reviewed its pros and cons, you’ve no doubt heard things like “GraphQL doesn’t support caching” or

Making Your First Custom Svelte TransitionMaking Your First Custom Svelte TransitionMar 15, 2025 am 11:08 AM

The Svelte transition API provides a way to animate components when they enter or leave the document, including custom Svelte transitions.

Show, Don't TellShow, Don't TellMar 16, 2025 am 11:49 AM

How much time do you spend designing the content presentation for your websites? When you write a new blog post or create a new page, are you thinking about

Classy and Cool Custom CSS Scrollbars: A ShowcaseClassy and Cool Custom CSS Scrollbars: A ShowcaseMar 10, 2025 am 11:37 AM

In this article we will be diving into the world of scrollbars. I know, it doesn’t sound too glamorous, but trust me, a well-designed page goes hand-in-hand

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)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),