Answers for "how to move an image to the middle in html"

CSS
0

image align center

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

aligning image to middle in html

<style>
.aligncenter {
    text-align: center;
}
</style>
Posted by: Guest on May-06-2020

Code answers related to "how to move an image to the middle in html"

Browse Popular Code Answers by Language