item center in css code example
Example 1: how to make things center using css
// add to the parent element
.parent{
height:100vh;
display:flex;
justify-content: center;
align-items: center;
}
Example 2: css align-items center
div {
display: flex;
align-items: center;
}