1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 16:57:46 +00:00

LibWeb: Implement more of "Expand Flexible Tracks" in GFC

Implements "Otherwise, if the free space is an indefinite length:" from
the spec.
This commit is contained in:
Aliaksandr Kalenik 2023-05-16 14:07:51 +03:00 committed by Andreas Kling
parent 2e13f65ff4
commit a3759b6e76
5 changed files with 75 additions and 19 deletions

View file

@ -0,0 +1,13 @@
<style>
.container {
background-color: palevioletred;
display: grid;
grid-template-columns: auto;
grid-template-rows: 1fr 1fr;
}
.item {
background-color: yellowgreen;
}
</style>
<div class="container"><div class="item">Uno</div></div>