Answers for "how to align a image to center on html"

CSS
12

center image css

.centerImg {
  display: block;
  margin: 0 auto;
}
Posted by: Guest on June-01-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 a image to center on html"

Browse Popular Code Answers by Language