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

18 lines
No EOL
245 B
HTML

<!DOCTYPE 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>