how to centralize a div inside a div css code example
Example: how to centralize the div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
.container {
display: flex;
justify-content: center;
align-items: center;
}