does anyone know about an article on why justify-self does not work?

does anyone know about an article on why justify-self does not work?
3 Replies
croganm
croganm2y ago
Justify self is really meant for grid. Most of the time, you can just use margin to simulate justify self in the case of flex box It's a long answer but think of it like an article. Explains it great
croganm
croganm2y ago
Stack Overflow
In CSS Flexbox, why are there no "justify-items" and "justify-self"...
Consider the main axis and cross axis of a flex container: Source: W3C To align flex items along the main axis there is one property: justify-content To align flex items along the cross axis the...
Aozen
Aozen2y ago
thank you ^^