1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 11:35:06 +00:00
serenity/Tests/LibWeb/Layout/input/grid/container-min-height.html
Aliaksandr Kalenik 2def1de4be LibWeb: Rerun rows sizings if grid auto height is less than min-height
If the first pass of rows sizing results in the container's automatic
height being less than the specified min-height, we need to run a
second pass using the updated available space.
2023-10-21 09:08:11 +02:00

10 lines
No EOL
255 B
HTML

<!DOCTYPE html><style type="text/css">
* {
border: 1px solid black;
}
.container {
display: grid;
min-height: 200px;
}
</style><div class="container"><div>Making Commerce Better for Everyone</div><div>Making Commerce Better for Everyone</div>