Answers for "how to align image to the center html"

13

html center image

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

make image go to center of page

//Making an image go to the center of the page
//A
<img src="wuteva.jpg" class="center">
//B
<parentElement style="text-align: center;">
//C
// put the image in a div with style="text-align: center;"
Posted by: Guest on October-19-2020

Code answers related to "how to align image to the center html"

Browse Popular Code Answers by Language