Answers for "center img in a dic"

CSS
4

image center in div

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

css center image in div

img { 
  display:block; 
  margin: 0 auto; /* the fastest way to center anything */ 
}
Posted by: Guest on February-23-2022

Browse Popular Code Answers by Language