html align image in div code example
Example 1: css center image
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
Example 2: center css elements
body{
display: grid;
place-items: center;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
body{
display: grid;
place-items: center;
}