align a container to center css code example
Example 1: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: center a div css
.center {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Example 3: css align center
//HTML
<div class="parent">
<span>Hello World</span>
</div>
//CSS
.parent {
display: flex;
justify-content: center;
align-items: center;
}
Example 4: how to center text in css
.class {
text-align: center;
}
Example 5: how to center anything inside your container
display: grid;
place-items: center;
height: 100vh;
Example 6: align center css
margin: auto;