justify-items
The justify-items
property is a sub-property of the CSS Box Alignment Module which basically controls the alignment of grid items within their scope.
.element {
justify-items: center;
}
justify-items
aligns grid items along the row (inline) axis. Specifically, this property …