I need the css to center image
Please provide your code as the solution can differ depending on the case.
Thanks!
1 Like
Usually you can use:
img {
display: block;
margin: 0 auto;
}
I hope this helps!
1 Like