Answers for "how to align center on images"

CSS
1

image align center

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
Posted by: Guest on July-22-2020
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 align center on images"

Browse Popular Code Answers by Language