Answers for "how align an image center"

CSS
3

Centering the image

img {
  display: block;
  margin: 0 auto;
}
Posted by: Guest on October-06-2021
1

how to make the image in the center html

/* for text*/
.myClass{
	text-align: center;
}
/* for divs,imgs,etc*/
.myClass{
	margin :auto;
}
/* other cases*/
.myClass{
	justify-content: center;
}
Posted by: Guest on December-31-2021

Browse Popular Code Answers by Language