pub(crate) type NonNamedGridPlacement = GenericGridPlacement<GridLine>;
Expand description
A grid line placement using CSS grid line coordinates to specify line positions. This uses the same coordinate
system as the public GridPlacement
type but doesn’t support named lines (these are expected to have already
been resolved by the time values of this type are constructed).
Aliased Type§
pub(crate) enum NonNamedGridPlacement {
Auto,
Line(GridLine),
Span(u16),
}