Answers for "img align middle"

CSS
14

html center image

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

aligning image to middle in html

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

Browse Popular Code Answers by Language