1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:37:36 +00:00

LibWeb+Base: Add grid repeat() functionality

Add ability to use values passed to grid-template-columns and
grid-template-rows for CSS Grid layout within a repeat() function.

E.g. grid-template-columns: repeat(2, 50px); means to have two columns
of 50px width each.
This commit is contained in:
martinfalisse 2022-10-08 14:05:31 +02:00 committed by Sam Atkins
parent 0b72d237c1
commit f538dc2fae
3 changed files with 108 additions and 21 deletions

View file

@ -18,7 +18,6 @@ public:
Percentage,
FlexibleLength,
// TODO: MinMax
// TODO: Repeat
// TODO: Max-Content
};