Answers for "how to center image in html in inline css"

CSS
1

center align an image css

<img src="myImg.png" class="center">

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

center image in css

body {
  background-position: center;
}
Posted by: Guest on February-27-2022

Code answers related to "how to center image in html in inline css"

Browse Popular Code Answers by Language