mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 00:55:06 +00:00

Fixes the issue that currently we do not consider table rows height while calculating min row height even if it is definite value.
17 lines
No EOL
229 B
HTML
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> |