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

30 lines
No EOL
454 B
HTML

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