CSS Tutorial

The language for styling web pages.

CSS Flexbox

CSS Flexbox

The Flexible Box Layout Module makes it easier to design a flexible and responsive layout structure without using float or positioning.

Key Properties (Container):

  • display: flex - Enables flexbox
  • flex-direction - row / column
  • justify-content - Main axis alignment
  • align-items - Cross axis alignment
  • flex-wrap - wrap / nowrap
  • gap - Space between items

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics