CSS CSS Centering Guide

Home/Tools/CSS Centering Guide

Compare all CSS centering techniques — Flexbox, Grid, absolute, margin auto — with live preview.

No sign-up neededRuns in your browserProduction-ready CSS

Centering Method

Flexbox

The most versatile centering method. Works in all modern browsers.

Browser:All browsers
Works for:Both axes, single element, multiple children

Preview Colors

#f3f4f6
#6366f1

Live Preview — Flexbox

Centered

CSS

.parent

display: flex;
align-items: center;
justify-content: center;
Generated CSS
.parent {
  display: flex;
  align-items: center;
  justify-content: center;
}