Answers for "how to shwo a image center in html"

CSS
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

Code answers related to "how to shwo a image center in html"

Browse Popular Code Answers by Language