1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:38:12 +00:00
serenity/Tests/LibWeb/Layout/input/grid/rows-1fr-1fr.html
Aliaksandr Kalenik a3759b6e76 LibWeb: Implement more of "Expand Flexible Tracks" in GFC
Implements "Otherwise, if the free space is an indefinite length:" from
the spec.
2023-05-17 07:48:38 +02:00

13 lines
257 B
HTML

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