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