monks/grid_template_areas

The grid-template-areas CSS property specifies named {{glossary(“grid areas”)}}, establishing the cells in the grid and assigning them names.

Values

pub const inherit: #(String, String)
pub const initial: #(String, String)
pub const none: #(String, String)
  • : The grid container doesn’t define any named grid areas.
pub fn raw(value: String) -> #(String, String)

Enter a raw string value for grid-template-areas

pub const revert: #(String, String)
pub const revert_layer: #(String, String)
pub const unset: #(String, String)
pub fn var(variable: String) -> #(String, String)

Enter a variable name to be used for grid-template-areas. It will be wrapped in var() and have -- prepended.

Search Document