LengthBox.h 376 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibWeb/CSS/Length.h>
  8. namespace Web::CSS {
  9. struct LengthBox {
  10. Length top { Length::make_auto() };
  11. Length right { Length::make_auto() };
  12. Length bottom { Length::make_auto() };
  13. Length left { Length::make_auto() };
  14. };
  15. }