以下にHTMLマークアップがあります。テーブルを含むdivのサイズを半分にカットする必要があるので、基本的にオーバーフローします。非表示にして、指定されたサイズに含まれるdivの一部のみを表示します。ただし、含まれているdivのheightプロパティはテーブルに適用されていません。
<html>
<head>
<title>Test</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type="text/css">
.temp{
height: 20px;
}
</style>
</head>
<body>
<div class="temp">
<table border="1">
<tr>
<td>This is a test.</td>
<td>Do you see what I mean?</td>
<td>I hate this overflow.</td>
</tr>
</table>
</div>
</body>
</html>