55417 No.1021
Ever found yourself struggling with aligning items perfectly in a grid? Well, I've got an amazing trick for you! Instead of using `align-items` property alone, try combining it with the lesser known but incredibly useful [`justify-self:`](
https://developer.mozilla.org/en-US/docs/Web/CSS/grid-property#values) and [`.griddy:last-child { align-self:} `] properties to nail that pixel perfect alignment! Here's a quick example for centering an element in the last row of your grid: ```css.container >.item:nth-of-type(even):not(:first-of-type) { justify-self: center; align-items:center;} ```