mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
LibWeb: Add parsing for the justify-content property
This commit is contained in:
parent
fb66feef5e
commit
80a44c3891
Notes:
sideshowbarker
2024-07-18 08:45:05 +09:00
Author: https://github.com/TobyAsE
Commit: 80a44c3891
Pull-request: https://github.com/SerenityOS/serenity/pull/8808
7 changed files with 45 additions and 0 deletions
|
@ -195,6 +195,14 @@ enum class Repeat : u8 {
|
|||
Space,
|
||||
};
|
||||
|
||||
enum class JustifyContent {
|
||||
FlexStart,
|
||||
FlexEnd,
|
||||
Center,
|
||||
SpaceBetween,
|
||||
SpaceAround,
|
||||
};
|
||||
|
||||
class StyleValue : public RefCounted<StyleValue> {
|
||||
public:
|
||||
virtual ~StyleValue();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue