summaryrefslogtreecommitdiff
path: root/include/libcss/properties.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2022-11-03 08:59:53 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2022-11-03 08:59:53 +0000
commite6d5d797176bca17454b81a328b1329aaa84ff6a (patch)
tree037f29f2e3eda2e7ec9f07cb8005cfc27929742f /include/libcss/properties.h
parent4d9a3d3e1dcdaa912dd00341a668ced672847a26 (diff)
downloadlibcss-e6d5d797176bca17454b81a328b1329aaa84ff6a.tar.gz
libcss-e6d5d797176bca17454b81a328b1329aaa84ff6a.tar.bz2
properties: Define align-self values in terms of align-items
Diffstat (limited to 'include/libcss/properties.h')
-rw-r--r--include/libcss/properties.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/libcss/properties.h b/include/libcss/properties.h
index f600bcc..af0a1f5 100644
--- a/include/libcss/properties.h
+++ b/include/libcss/properties.h
@@ -163,12 +163,12 @@ enum css_align_items_e {
};
enum css_align_self_e {
- CSS_ALIGN_SELF_INHERIT = 0x0,
- CSS_ALIGN_SELF_STRETCH = 0x1,
- CSS_ALIGN_SELF_FLEX_START = 0x2,
- CSS_ALIGN_SELF_FLEX_END = 0x3,
- CSS_ALIGN_SELF_CENTER = 0x4,
- CSS_ALIGN_SELF_BASELINE = 0x5,
+ CSS_ALIGN_SELF_INHERIT = CSS_ALIGN_ITEMS_INHERIT,
+ CSS_ALIGN_SELF_STRETCH = CSS_ALIGN_ITEMS_STRETCH,
+ CSS_ALIGN_SELF_FLEX_START = CSS_ALIGN_ITEMS_FLEX_START,
+ CSS_ALIGN_SELF_FLEX_END = CSS_ALIGN_ITEMS_FLEX_END,
+ CSS_ALIGN_SELF_CENTER = CSS_ALIGN_ITEMS_CENTER,
+ CSS_ALIGN_SELF_BASELINE = CSS_ALIGN_ITEMS_BASELINE,
CSS_ALIGN_SELF_AUTO = 0x6
};