1 #ifndef LH_CSS_MARGINS_H
2 #define LH_CSS_MARGINS_H
4 #include "css_length.h"
15 css_margins() = default;
17 css_margins(const css_margins
& val
)
25 css_margins
& operator=(const css_margins
& val
)
34 string
to_string() const
36 return "left: " + left
.to_string() +
37 ", right: " + right
.to_string() +
38 ", top: " + top
.to_string() +
39 ", bottom: " + bottom
.to_string();
44 #endif // LH_CSS_MARGINS_H