css body align center code example
Example 1: css align center
<div class="parent">
<span>Hello World</span>
</div>
.parent {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: html center body
body {
display:flex; flex-direction:column; justify-content:center;
min-height:100vh;
}
Example 3: css center text
.centerText {
text-align: center;
}
Example 4: html center body
body {
max-width: max-content;
margin: auto;
}
Example 5: how to center text in css
.class {
text-align: center;
}
Example 6: css text align center
body {
text-align: center;
}