css_ast/types/attachment.rs
1use css_parse::keyword_set;
2use csskit_derives::Visitable;
3
4keyword_set!(
5 /// <https://drafts.csswg.org/css-backgrounds-3/#typedef-attachment>
6 ///
7 /// ```text,ignore
8 /// <attachment> = scroll | fixed | local
9 /// ```
10 #[derive(Visitable)]
11 #[visit(skip)]
12 pub enum Attachment {
13 Scroll: "scroll",
14 Fixed: "fixed",
15 Local: "local"
16 }
17);