Page Widget How to - vertical align table cell








Question

We would like to know how to vertical align table cell.

Answer


<!DOCTYPE html>
<html lang="en">
<head>
<style type="text/css">
table {<!--from ww  w  .ja  v  a  2  s.c o  m-->
  width: 300px;
  text-align: left;
}

table th, table td {
  height: 50px;
}

table th {
  vertical-align: bottom;
}

table td {
  vertical-align: middle;
}
</style>
</head>
<body>
  <table border="1">
    <caption>User Info</caption>
    <tr>
      <th>Name</th>
      <th>Email</th>
    </tr>
    <tr>
      <td>John</td>
      <td>john@mail.com</td>
    </tr>
  </table>
</body>
</html>

The code above is rendered as follows: