Answers for "align img css"

13

html center image

/* Here is the CSS code! */
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
Posted by: Guest on October-17-2020
7

centre align image in div

body {
  margin: 0;
}

#over img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
Posted by: Guest on November-06-2020
0

Aligning an image in css

.center {
  display: block;
  
  margin-left: auto;
  margin-right: auto;
  
  width: 50%;
}
Posted by: Guest on May-21-2021

Browse Popular Code Answers by Language