<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
table {
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>