ladybird/Tests/LibWeb/Layout/input/table/rows-height-distribution-1.html
2025-05-04 11:23:17 +02:00

31 lines
No EOL
470 B
HTML

<!DOCTYPE html>
<style>
* {
font-family: 'SerenitySans';
}
.table {
display: table;
width: 200px;
background-color: darkgoldenrod;
}
.row {
display: table-row;
}
.cell {
display: table-cell;
}
.a {
height: 50px;
background-color: darkcyan;
}
.b {
height: 100px;
background-color: orangered;
}
</style>
<div class="table"><div class="row a"><div class="cell"></div></div><div class="row b"><div class="cell"></div></div></div>