how to move element to center css code example
Example 1: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: center css elements
body{
display: grid;
place-items: center;
}
Example 3: center elemnts css
margin-left: auto;
margin-right: auto;
Example 4: how to put element in center in html
p {
text-align: center;
}