Answers for "how i make image position center"

CSS
0

Centering the image

img {
  display: block;
  margin: 0 auto;
}
Posted by: Guest on October-06-2021
1

center an image

.someclass {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
Posted by: Guest on July-08-2020

Browse Popular Code Answers by Language