Answers for "css how to center div and img"

CSS
4

image center in div

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}
Posted by: Guest on December-28-2020
1

center image in div

display: block;
margin-left: auto;
margin-right: auto
Posted by: Guest on September-24-2021

Browse Popular Code Answers by Language