1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 10:25:07 +00:00
serenity/Tests/LibWeb/Layout/input/table/fixed-layout-pixel-width-all-columns.html
2023-08-09 08:33:02 +01:00

27 lines
No EOL
548 B
HTML

<style>
table {
width: 600px;
table-layout: fixed;
border-collapse: collapse;
border: 1px solid black;
}
td {
border: 1px solid black;
}
</style>
<table>
<tr>
<td style="width: 50px">cell</td>
<td style="width: 50px">cell</td>
<td style="width: 100px">A table cell</td>
<td style="width: 300px">A table cell</td>
</tr>
<tr>
<td>cell</td>
<td>cell</td>
<td>A table cell</td>
<td>A table cell</td>
</tr>
</table>