align text horizontally center code example
Example 1: center css elements
body{
display: grid;
place-items: center;
}
Example 2: how to horizontal center a div in css
#inner {
width: 50%;
margin: 0 auto;
}
body{
display: grid;
place-items: center;
}
#inner {
width: 50%;
margin: 0 auto;
}