Answers for "align image at the center of the page + 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
0

align image center of webpage

 
img {
display: block;
width: 60%;
margin-left: auto;
margin-right: auto;
}
Posted by: Guest on September-20-2021

Code answers related to "align image at the center of the page + html"

Browse Popular Code Answers by Language