Answers for "how to align image in center in html without css"

CSS
4

how to center an image element inside a block in css

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

Code answers related to "how to align image in center in html without css"

Browse Popular Code Answers by Language