Answers for "how to easily center a picture in html"

CSS
14

html center image

/* Here is the CSS code! */
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
Posted by: Guest on October-17-2020

Code answers related to "how to easily center a picture in html"

Browse Popular Code Answers by Language