I\'m trying to create a simple page with CSS Grid.
What I\'m failing to do is center the text from the HTML to the respective grid cells.
I\'ve tried placing
The CSS place-items shorthand property sets the align-items and justify-items properties, respectively. If the second value is not set, the first value is also used for it.
.parent { display: grid; place-items: center; }