Flexbox centering
📝 CSSThis snippet centers an element both horizontally and vertically within its parent using Flexbox.
CSS
.parent { display: flex; align-items: center; justify-content: center; height: 100vh;
}
Comments
Nice, that flexbox centering trick is a lifesaver. Clean and simple for any layout.