Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
td {
display: block;
border: 2px solid #000;
width: 60px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
</style>
</head>
<body>
<table>
<tbody>
<tr>
<td>Hello World</td>
</tr>
</tbody>
</table>
</body>
</html>