Answers for "how to make picture come middle css"

CSS
0

how to make picture come middle css

<!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 "how to make picture come middle css"

Browse Popular Code Answers by Language