← Back to Gists

Flexbox Centering Trick

📝 CSS
mklein
mklein · Level 7 ·

This CSS snippet centers any child element both vertically and horizontally within its parent using flexbox.

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

Comments

No comments yet. Start the discussion.