1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 08:55:07 +00:00
serenity/Tests/LibWeb/Layout/input/table/cell-relative-to-specified-table-width.html
Andi Gallo 19a26533a9 LibWeb: Make the type of column whether it's percent or not
Change how we store type of columns. It was used where the specification
only distinguishes between percent and everything else, so it makes more
sense to store and use it as a boolean.
2023-07-22 07:06:50 +02:00

14 lines
No EOL
247 B
HTML

<table style="width: 100%;text-align: center">
<tbody>
<tr>
<th style="width: 39%">A</th>
<th style="width: 22%">B</th>
<th style="width: 39%">C D</th>
</tr>
<tr>
<td>E</td>
<td>F</td>
<td>G</td>
</tr>
</tbody>
</table>