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

LibWeb: Add support for align-items and align-self in CSS grid

This commit is contained in:
Christophe Naud-Dulude 2023-07-27 13:18:32 -04:00 committed by Andreas Kling
parent dfbc2839b4
commit 11b844ce20
6 changed files with 167 additions and 0 deletions

View file

@ -104,6 +104,7 @@ public:
private:
CSS::JustifyItems justification_for_item(Box const& box) const;
CSS::AlignItems alignment_for_item(Box const& box) const;
void resolve_items_box_metrics(GridDimension const dimension);