css center something code example
Example 1: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: 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 3: css text align center
body {
text-align: center;
}