The grid CSS property is a shorthand property that sets all of the explicit and implicit grid properties in a single declaration.
Using grid you specify one axis using {{cssxref(“grid-template-rows”)}} or {{cssxref(“grid-template-columns”)}}, you then specify how content should auto-repeat in the other axis using the implicit grid properties: {{cssxref(“grid-auto-rows”)}}, {{cssxref(“grid-auto-columns”)}}, and {{cssxref(“grid-auto-flow”)}}.
pub const auto_: #(String, String)
pub const auto_fill: #(String, String)
pub const auto_fit: #(String, String)
pub const auto_flow: #(String, String)
pub const dense: #(String, String)
pub const inherit: #(String, String)
pub const initial: #(String, String)
pub const max_content: #(String, String)
max-content value of grid
pub const min_content: #(String, String)
min-content value of grid
pub const none: #(String, String)
pub fn raw(value: String) -> #(String, String)
Enter a raw string value for grid
pub const revert: #(String, String)
pub const revert_layer: #(String, String)
pub const subgrid: #(String, String)
pub const unset: #(String, String)
pub fn var(variable: String) -> #(String, String)
Enter a variable name to be used for grid.
It will be wrapped in var() and have -- prepended.