← Back to Gists

Flexbox centering hack

📝 CSS
ablack
ablack · Level 4 ·

Use Flexbox to center any element both vertically and horizontally with just three lines of CSS.

CSS
display: flex;
justify-content: center;
align-items: center;

Comments

No comments yet. Start the discussion.