Files
30-seconds-of-code/snippets/flexbox-centering.md
2019-08-22 12:30:43 +03:00

714 B

title, tags
title tags
Flexbox centering layout,intermediate

Horizontally and vertically centers a child element within a parent element using flexbox.

HTML

<div class="flexbox-centering"><div class="child">Centered content.</div></div>

CSS

.flexbox-centering {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

Demo

Explanation

  1. display: flex enables flexbox.
  2. justify-content: center centers the child horizontally.
  3. align-items: center centers the child vertically.

Browser support

⚠️ Needs prefixes for full support.