2020-01-18 05:38:21 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 05:38:21 -03:00
|
|
|
*/
|
|
|
|
|
|
2019-07-01 12:17:32 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
2020-03-07 06:32:51 -03:00
|
|
|
#include <LibWeb/CSS/Length.h>
|
2019-07-01 12:17:32 -03:00
|
|
|
|
2020-07-26 15:01:35 -03:00
|
|
|
namespace Web::CSS {
|
2020-03-07 06:27:02 -03:00
|
|
|
|
2019-07-01 12:17:32 -03:00
|
|
|
struct LengthBox {
|
2020-06-24 06:08:46 -03:00
|
|
|
Length top { Length::make_auto() };
|
|
|
|
|
Length right { Length::make_auto() };
|
|
|
|
|
Length bottom { Length::make_auto() };
|
|
|
|
|
Length left { Length::make_auto() };
|
2019-07-01 12:17:32 -03:00
|
|
|
};
|
2020-03-07 06:27:02 -03:00
|
|
|
|
|
|
|
|
}
|