Flexbox Centering Trick
๐ CSSThis 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.