content inside div css code example
Example 1: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: how to center anything inside your container
display: grid;
place-items: center;
height: 100vh;