1
HTML/CSSIntermediate#css#layout-puzzle
With Flexbox, set display: flex, justify-content: center, and align-items: center on the parent. With Grid, place-items: center on the parent does the same in one line. Absolute positioning with transform is an older alternative.
.parent {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
/* Grid one-liner */
.parent2 { display: grid; place-items: center; height: 100vh; }