Photoshop tuts
justify-self
The CSS justify-self property aligns an individual element, overriding its parent container’s justify-items value. .container { display: grid; grid-template-columns: 2fr 1fr; justify-items: center; /* overrides this value */ } .item:nth-child(1) { justify-self: start; } .item:nth-child(2) { justify-self: center; } .item:nth-child(3) { justify-self: end; } .item:nth-child(4) { justify-self: stretch; } CodePen Embed Fallback Although justify-self works Read more…