how to make css items go in center code example
Example 1: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: how to put element in center in html
p {
text-align: center;
}
.container {
display: flex;
justify-content: center;
align-items: center;
}
p {
text-align: center;
}