how to horizontally align elements with margin property css code example
Example 1: centering css elements
// add to the parent element
.parent {
display: grid;
place-items: center;
}
Example 2: how to center a div
margin:auto
// add to the parent element
.parent {
display: grid;
place-items: center;
}
margin:auto