ladybird/Tests/LibWeb/Layout/input/table/line-breaking-in-cells.html
2025-05-04 11:23:17 +02:00

26 lines
No EOL
295 B
HTML

<!DOCTYPE html>
<style>
table {
border-collapse: collapse
}
td {
border: 1px solid black;
}
</style>
<table>
<tbody>
<tr>
<td style="width: 30%;">A
</td>
<td style="width: 40%;">
B
<br>C
</td>
<td style="width: 30%;">
D
</td>
</tr>
</tbody>
</table>