Answers for "align image in the center of div"

CSS
4

how to center an image element inside a block in css

img { display:block;
      margin-left: auto;
      margin-right:auto;
      }
Posted by: Guest on July-08-2020
12

center image css

.centerImg {
  display: block;
  margin: 0 auto;
}
Posted by: Guest on June-01-2020

Code answers related to "align image in the center of div"

Browse Popular Code Answers by Language