monks/background_origin
The background-origin CSS property sets the background’s origin: from the border start, inside the border, or inside the padding.
Note that background-origin is ignored when {{cssxref(“background-attachment”)}} is fixed.
Values
pub const border_box: #(String, String)
- : The background is positioned relative to the border box.
pub const content_box: #(String, String)
- : The background is positioned relative to the content box.
pub const padding_box: #(String, String)
- : The background is positioned relative to the padding box. Default value.
pub fn raw(value: String) -> #(String, String)
Enter a raw string value for background-origin
pub const revert_layer: #(String, String)