css center stuff code example
Example 1: css center everything
/* to make "align-items: center" work: use "min-height: 100vh;"
100vh = 100% Viewport Height */
body {
display: flex;
min-height: 100vh;
flex-direction: column;
justify-content: center;
align-items: center;
}
Example 2: center with css
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}