Answers for "how to put a image in the middle 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
0

aligning image to middle in html

<style>
.aligncenter {
    text-align: center;
}
</style>
Posted by: Guest on May-06-2020

Code answers related to "how to put a image in the middle html"

Browse Popular Code Answers by Language