how to alighn the conten in the center in css code example
Example 1: center text in css
.class {
text-align: center;
}
Example 2: html center body
body {
max-width: max-content;
margin: auto;
}
.class {
text-align: center;
}
body {
max-width: max-content;
margin: auto;
}