From 3c0c6b6def402f0c0b654974e193c8c4bf55047f Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Thu, 3 Nov 2022 08:56:43 +0000 Subject: properties: position: Add support for 'sticky' value --- include/libcss/properties.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') 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 { -- cgit v1.2.3