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

LibWeb/Layout: Add support for grid-auto-flow in GFC

This commit is contained in:
Aliaksandr Kalenik 2023-08-17 20:25:51 +02:00 committed by Alexander Kalenik
parent 703c2bb06e
commit 37f5253ec9
3 changed files with 38 additions and 3 deletions

View file

@ -0,0 +1,8 @@
<!doctype html><style>
* { border: 1px solid black; }
body {
display: grid;
grid-auto-flow: column;
width: 200px;
}
</style><body><div>hello</div><div>friends</div>