1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 00:55:06 +00:00
serenity/Tests/LibWeb/Layout/input/table/row-px-height.html
Aliaksandr Kalenik 9b4cd0dab7 LibWeb: Consider row computed height in total row min height of table
Fixes the issue that currently we do not consider table rows height
while calculating min row height even if it is definite value.
2023-04-28 06:17:07 +02:00

17 lines
No EOL
229 B
HTML

<style>
body {
display: table;
}
.row {
display: table-row;
height: 100px;
}
.cell {
display: table-cell;
border: 1px solid black;
width: 100px;
}
</style>
<div class="row"><div class="cell"></div></div>