1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:17:35 +00:00

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.
This commit is contained in:
Aliaksandr Kalenik 2023-10-21 04:29:38 +02:00 committed by Andreas Kling
parent b7b57523cc
commit 2def1de4be
3 changed files with 52 additions and 0 deletions

View file

@ -0,0 +1,10 @@
<!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>