CSS Property Value How to - vertical-align: middle; center text and image








Question

We would like to know how to vertical-align: middle; center text and image.

Answer


<!--   w  w w. jav  a2  s  . c  om-->
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#Outer1 {
  display: table-cell;
  height: 500px;
  width: 500px;
  border: 1px solid red;
  vertical-align: middle;
  text-align: center;
}
</style>
</head>
<body>
  <div id="Outer1" class="elementStatus">
    <div class="image">
      <!-- THIS IS THE IMAGE -->
      <img src="http://placehold.it/300x300" />
    </div>
    <div class="text">Statuts Text</div>
  </div>
</body>
</html>

The code above is rendered as follows: