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/table-width.html
Aliaksandr Kalenik e54ee7de96 LibWeb: Exclude borders from width available for table columns
Fix table box width calculation to minus horizonal borders from space
available for columns.
2023-04-29 16:08:48 +02:00

11 lines
No EOL
194 B
HTML

<style>
.table {
width: 100%;
border: 100px solid black;
}
.cell {
height: 10px;
background-color: orange;
}
</style><table class="table"><tr><td class="cell"></td></tr></table>