mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:17:45 +00:00
LibWeb: Add parsing for the justify-content property
This commit is contained in:
parent
fb66feef5e
commit
80a44c3891
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