css_ast/types/layout_box.rs
1use css_parse::keyword_set;
2
3keyword_set!(
4 /// <https://drafts.csswg.org/css-box-4/#typedef-layout-box>
5 ///
6 /// ```text,ignore
7 /// <layout-box> = <visual-box> | margin-box
8 /// ```
9 pub enum LayoutBox {
10 ContentBox: "content-box",
11 LayoutBox: "padding-box",
12 BorderBox: "border-box",
13 MarginBox: "margin-box",
14 }
15);