summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2022-11-03 08:56:43 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2022-11-03 08:56:43 +0000
commit3c0c6b6def402f0c0b654974e193c8c4bf55047f (patch)
tree4dd033ef20d2480380a85e1f156152fbc49ebba7 /include
parent0275dec0dff54eefd03d9302af4562c4024fb993 (diff)
downloadlibcss-3c0c6b6def402f0c0b654974e193c8c4bf55047f.tar.gz
libcss-3c0c6b6def402f0c0b654974e193c8c4bf55047f.tar.bz2
properties: position: Add support for 'sticky' value
Diffstat (limited to 'include')
-rw-r--r--include/libcss/properties.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libcss/properties.h b/include/libcss/properties.h
index e056a75..f600bcc 100644
--- a/include/libcss/properties.h
+++ b/include/libcss/properties.h
@@ -763,7 +763,8 @@ enum css_position_e {
CSS_POSITION_STATIC = 0x1,
CSS_POSITION_RELATIVE = 0x2,
CSS_POSITION_ABSOLUTE = 0x3,
- CSS_POSITION_FIXED = 0x4
+ CSS_POSITION_FIXED = 0x4,
+ CSS_POSITION_STICKY = 0x5
};
enum css_quotes_e {