18 lines
289 B
HTML
18 lines
289 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
table { border: 1px solid black; width: 200px; }
|
|
td { border: 1px solid gray; padding: 5px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<tr>
|
|
<td>This is a long text that should wrap inside the cell</td>
|
|
<td>Short</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|