Answers for "html how to center an image to a parent element"

CSS
0

html how to center an image to a parent element

<!DOCTYPE html>
<html>
  <head>
    <title>Center an Image using text align center</title>
    <style>
      .img-container {
        text-align: center;
        display: block;
      }
    </style>
  </head>
  <body>
    <span class="img-container"> <!-- Inline parent element -->
      <img src="user.png" alt="">
    </span>
  </body>
</html>
Posted by: Guest on March-05-2021
0

html how to center an image to a parent element

.element {
    object-fit: fill || contain || cover || none || scale-down;
}
Posted by: Guest on March-05-2021
0

html how to center an image to a parent element

<!DOCTYPE html>
<html>
  <head>
    <title>Center an Image using text align center</title>
    <style>
      .img-container {
        text-align: center;
      }
    </style>
  </head>
  <body>
    <div class="img-container"> <!-- Block parent element -->
      <img src="user.png" alt="John Doe">
    </div>
  </body>
</html>
Posted by: Guest on February-10-2021

Code answers related to "html how to center an image to a parent element"

Browse Popular Code Answers by Language