惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
Vercel News
Vercel News
D
DataBreaches.Net
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
小众软件
小众软件
美团技术团队
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
D
Docker
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
H
Hackread – Cybersecurity News, Data Breaches, AI and More
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
S
SegmentFault 最新的问题
云风的 BLOG
云风的 BLOG
B
Blog
雷峰网
雷峰网
The Cloudflare Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
CSS Flexbox: The Only Guide You Need
Alex Chen · 2026-05-16 · via DEV Community

Alex Chen

CSS Flexbox: The Only Guide You Need

Stop Googling flexbox every time. Bookmark this page instead.

The Container

.container {
  display: flex;
}

Enter fullscreen mode Exit fullscreen mode

That's it. Everything inside is now a flex item.

Direction: Row vs Column

/* Horizontal (default) */
.flex-row { flex-direction: row; }

/* Vertical */
.flex-col { flex-direction: column; }

Enter fullscreen mode Exit fullscreen mode

Row (default):          Column:
┌───┬───┬───┐          ┌───┐
│ 1 │ 2 │ 3 │          │ 1 │
└───┴───┴───┘          ├───┤
                        │ 2 │
                        ├───┤
                        │ 3 │
                        └───┘

Enter fullscreen mode Exit fullscreen mode

Alignment (The Tricky Part)

Main Axis vs Cross Axis

Row layout:
  Main axis:    → (horizontal)
  Cross axis:  ↓ (vertical)

Column layout:
  Main axis:    ↓ (vertical)
  Cross axis:  → (horizontal)

Enter fullscreen mode Exit fullscreen mode

justify-content (Main Axis)

.container {
  justify-content: flex-start;    /* Default: items at the start */
  justify-content: flex-end;      /* Items at the end */
  justify-content: center;        /* Items centered */
  justify-content: space-between; /* Equal space between items */
  justify-content: space-around;  /* Equal space around items */
  justify-content: space-evenly;  /* Equal space everywhere */
}

Enter fullscreen mode Exit fullscreen mode

flex-start:   [1][2][3]              
flex-end:                [1][2][3]
center:         [1][2][3]
space-between: [1]   [2]   [3]
space-around:  [ 1 ] [ 2 ] [ 3 ]
space-evenly:  [  1  ][  2  ][  3  ]

Enter fullscreen mode Exit fullscreen mode

align-items (Cross Axis)

.container {
  align-items: stretch;    /* Default: items stretch to fill */
  align-items: flex-start; /* Items at the top */
  align-items: flex-end;   /* Items at the bottom */
  align-items: center;     /* Items vertically centered */
  align-items: baseline;   /* Aligned by text baseline */
}

Enter fullscreen mode Exit fullscreen mode

align-self (Per Item Override)

.container { align-items: center; }

.item-1 { align-self: flex-start; } /* This one goes to the top */
.item-2 { align-self: flex-end; }   /* This one goes to the bottom */

Enter fullscreen mode Exit fullscreen mode

The Centering Trick

/* Center anything horizontally AND vertically */
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Even shorter with grid */
.center {
  display: grid;
  place-items: center;
}

Enter fullscreen mode Exit fullscreen mode

Gap (Spacing Between Items)

.container {
  gap: 1rem;         /* Same gap in all directions */
  row-gap: 0.5rem;   /* Gap between rows */
  column-gap: 1.5rem; /* Gap between columns */
}

Enter fullscreen mode Exit fullscreen mode

Flex Item Properties

flex-grow (How much to grow)

.item { flex-grow: 1; } /* Take up equal space */
.item { flex-grow: 2; } /* Take up 2x space */

Enter fullscreen mode Exit fullscreen mode

Without flex-grow:     flex-grow: 1:          flex-grow: 2, 1:
┌────┬────┬────┐      ┌─────┬─────┬─────┐   ┌──────────┬─────┐
│ 50 │ 50 │ 50 │      │ 100 │ 100 │ 100 │   │ 200      │ 100 │
│ px  │ px  │ px  │      │ px  │ px  │ px  │   │ px       │ px  │
└────┴────┴────┘      └─────┴─────┴─────┘   └──────────┴─────┘

Enter fullscreen mode Exit fullscreen mode

flex-shrink (How much to shrink)

.item { flex-shrink: 0; } /* Don't shrink — keep minimum size */
.item { flex-shrink: 1; } /* Default: shrink equally */

Enter fullscreen mode Exit fullscreen mode

flex-basis (Initial size)

.item { flex-basis: 200px; } /* Start at 200px before growing/shrinking */
.item { flex-basis: auto; }   /* Default: based on content */

Enter fullscreen mode Exit fullscreen mode

The Shorthand: flex

/* flex: grow shrink basis */
.item { flex: 1; }           /* flex: 1 1 0% */
.item { flex: 0 0 200px; }   /* Fixed 200px, no grow/shrink */
.item { flex: 2 1 100px; }   /* Grow 2x, shrink, start at 100px */

Enter fullscreen mode Exit fullscreen mode

Common Layouts

Navigation Bar

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.navbar .logo { flex-shrink: 0; }
.navbar .links { display: flex; gap: 1.5rem; }

Enter fullscreen mode Exit fullscreen mode

Card Layout

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 300px; /* Grow, shrink, minimum 300px */
  max-width: 400px; /* Don't get too wide */
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
}

Enter fullscreen mode Exit fullscreen mode

Holy Grail Layout

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header { /* Fixed height */ }
.footer { /* Fixed height */ margin-top: auto; }

.content {
  display: flex;
  flex: 1;
}

.sidebar { flex: 0 0 250px; }
.main { flex: 1; padding: 2rem; }

Enter fullscreen mode Exit fullscreen mode

Sticky Footer

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content { flex: 1; }     /* Takes all available space */
.footer { /* Stays at bottom */ }

Enter fullscreen mode Exit fullscreen mode

Input with Button

.input-group {
  display: flex;
  gap: 0;
}

.input-group input {
  flex: 1;            /* Input takes remaining space */
  border-radius: 8px 0 0 8px;
}

.input-group button {
  border-radius: 0 8px 8px 0;
}

Enter fullscreen mode Exit fullscreen mode

Quick Reference Card

Property Values Default
flex-direction row, column, row-reverse, column-reverse row
justify-content flex-start, flex-end, center, space-between, space-around, space-evenly flex-start
align-items stretch, flex-start, flex-end, center, baseline stretch
flex-wrap nowrap, wrap, wrap-reverse nowrap
gap length (rem, px, %) 0
flex-grow number 0
flex-shrink number 1
flex-basis auto, length, content auto
align-self auto, flex-start, flex-end, center, stretch auto

What's your favorite flexbox trick? Share it!

Follow @armorbreak for more CSS content.