mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 20:15:07 +00:00

We need a way to represent values that are "auto", so adding a Length class seems like the easiest way to achieve that.
10 lines
139 B
C
10 lines
139 B
C
#pragma once
|
|
|
|
#include <LibHTML/CSS/Length.h>
|
|
|
|
struct LengthBox {
|
|
Length top;
|
|
Length right;
|
|
Length bottom;
|
|
Length left;
|
|
};
|