HTML Element Style How to - Fix Table cells height regardless the content of the cell








Question

We would like to know how to fix Table cells height regardless the content of the cell.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
table {<!--from w  ww .jav a2s . com-->
  width: 30px;
  border: 1px solid black;
}

table td>div {
  overflow: hidden;
  height: 15px;
}
</style>
</head>
<body>
  <table>
    <tr>
      <td>
        <div>this is a test</div>
      </td>
    </tr>
  </table>
</body>
</html>

The code above is rendered as follows: