Answers for "how to center image in page css"

CSS
1

how to center an image in css

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
Posted by: Guest on July-22-2020
0

how to center image in css

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

Browse Popular Code Answers by Language