Answers for "imgace center"

CSS
3

Centering the image

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

image align center

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
Posted by: Guest on July-22-2020

Browse Popular Code Answers by Language