Answers for "put image in middle of page html"

CSS
44

css center image

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
Posted by: Guest on November-28-2019
0

aligning image to middle in html

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

Code answers related to "put image in middle of page html"

Browse Popular Code Answers by Language